diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-30 21:21:23 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-30 21:21:23 +0100 |
commit | 6394d1974236412f1156f204405ee3b9c21e6150 (patch) | |
tree | 0ec3f06b20d62809e24c8d16a6705e1e348a8da1 /module/plugins/captcha/AdYouLike.py | |
parent | Fix https://github.com/pyload/pyload/issues/2246 (diff) | |
download | pyload-6394d1974236412f1156f204405ee3b9c21e6150.tar.xz |
Improve Captcha task managing
Diffstat (limited to 'module/plugins/captcha/AdYouLike.py')
-rw-r--r-- | module/plugins/captcha/AdYouLike.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/module/plugins/captcha/AdYouLike.py b/module/plugins/captcha/AdYouLike.py index c21a3d4fa..c2e5a461d 100644 --- a/module/plugins/captcha/AdYouLike.py +++ b/module/plugins/captcha/AdYouLike.py @@ -9,7 +9,7 @@ from module.plugins.internal.CaptchaService import CaptchaService class AdYouLike(CaptchaService): __name__ = "AdYouLike" __type__ = "captcha" - __version__ = "0.09" + __version__ = "0.10" __status__ = "testing" __description__ = """AdYouLike captcha service plugin""" @@ -87,6 +87,4 @@ class AdYouLike(CaptchaService): '_ayl_token_challenge': challenge['token'], '_ayl_response' : response} - self.log_debug("Result: %s" % response) - return result |