From 299a26f5422f7309dafb30a6876e0c5d164bf92c Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 14 Dec 2015 16:08:07 +0100 Subject: Update captchas --- module/plugins/captcha/AdsCaptcha.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/captcha/AdsCaptcha.py') 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: -- cgit v1.2.3