diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-15 22:51:17 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-15 22:51:17 +0200 |
commit | 57e68cccae1a959c3d1ca54938ef2cd7567fc45c (patch) | |
tree | 65625ff68381bb99c5dc761656be643da5776199 | |
parent | Using CaptchaService to make them works on 0.5 (diff) | |
download | pyload-57e68cccae1a959c3d1ca54938ef2cd7567fc45c.tar.xz |
Captcha9kw: fixed bad gettext use
-rwxr-xr-x | module/plugins/hooks/Captcha9kw.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py index 755e2519a..84e69a235 100755 --- a/module/plugins/hooks/Captcha9kw.py +++ b/module/plugins/hooks/Captcha9kw.py @@ -30,7 +30,7 @@ from module.plugins.Hook import Hook class Captcha9kw(Hook):
__name__ = "Captcha9kw"
- __version__ = "0.06"
+ __version__ = "0.07"
__description__ = """send captchas to 9kw.eu"""
__config__ = [("activated", "bool", "Activated", False),
("force", "bool", "Force CT even if client is connected", True),
@@ -86,7 +86,7 @@ class Captcha9kw(Hook): "action": "usercaptchaupload" })
if response.isdigit():
- self.logInfo(_("NewCaptchaID from upload: %s : %s" % (response,task.captchaFile)))
+ self.logInfo(_("NewCaptchaID from upload: %s : %s") % (response,task.captchaFile))
for i in range(1, 100, 1):
response2 = getURL(self.API_URL, get = { "apikey": self.getConfig("passkey"), "id": response,"pyload": "1","source": "pyload", "action": "usercaptchacorrectdata" })
|