diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-14 16:08:07 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-27 21:19:38 +0100 |
commit | 299a26f5422f7309dafb30a6876e0c5d164bf92c (patch) | |
tree | 2ac7a1937f096334edbf8011bcd015d88d0307bc /module/plugins/captcha/AdsCaptcha.py | |
parent | Rewrite utils (1) (diff) | |
download | pyload-299a26f5422f7309dafb30a6876e0c5d164bf92c.tar.xz |
Update captchas
Diffstat (limited to 'module/plugins/captcha/AdsCaptcha.py')
-rw-r--r-- | module/plugins/captcha/AdsCaptcha.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/captcha/AdsCaptcha.py b/module/plugins/captcha/AdsCaptcha.py index e8c578e96..234d2a0cf 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.11" + __version__ = "0.12" __status__ = "testing" __description__ = """AdsCaptcha captcha service plugin""" @@ -38,7 +38,7 @@ class AdsCaptcha(CaptchaService): def challenge(self, key=None, data=None): PublicKey, CaptchaId = key or self.retrieve_key(data) - html = self.plugin.load("http://api.adscaptcha.com/Get.aspx", + html = self.pyfile.plugin.load("http://api.adscaptcha.com/Get.aspx", get={'CaptchaId': CaptchaId, 'PublicKey': PublicKey}) try: |