diff options
Diffstat (limited to 'module/plugins/captcha/AdsCaptcha.py')
-rw-r--r-- | module/plugins/captcha/AdsCaptcha.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/captcha/AdsCaptcha.py b/module/plugins/captcha/AdsCaptcha.py index 234d2a0cf..eb547de8b 100644 --- a/module/plugins/captcha/AdsCaptcha.py +++ b/module/plugins/captcha/AdsCaptcha.py @@ -9,7 +9,7 @@ from module.plugins.internal.CaptchaService import CaptchaService class AdsCaptcha(CaptchaService): __name__ = "AdsCaptcha" __type__ = "captcha" - __version__ = "0.12" + __version__ = "0.13" __status__ = "testing" __description__ = """AdsCaptcha captcha service plugin""" @@ -58,7 +58,4 @@ class AdsCaptcha(CaptchaService): get={'cid': challenge, 'dummy': random.random()}, cookies=True, input_type="jpg") - - self.log_debug("Result: %s" % result) - return result |