diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-15 22:51:17 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-15 23:03:40 +0200 |
commit | e2f69390b3e05edfc273e7302c02f61a8b6a4976 (patch) | |
tree | df3732c62c9550bc4e4ab66c6ee99a2c3df68014 /pyload/plugins/hooks | |
parent | Fixed translatable string (diff) | |
download | pyload-e2f69390b3e05edfc273e7302c02f61a8b6a4976.tar.xz |
Captcha9kw: fixed bad gettext use(cherry picked from commit 57e68cccae1a959c3d1ca54938ef2cd7567fc45c)
Conflicts:
pyload/plugins/hooks/Captcha9kw.py
Diffstat (limited to 'pyload/plugins/hooks')
-rwxr-xr-x | pyload/plugins/hooks/Captcha9kw.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hooks/Captcha9kw.py b/pyload/plugins/hooks/Captcha9kw.py index 2eb780468..61f4ad5a2 100755 --- a/pyload/plugins/hooks/Captcha9kw.py +++ b/pyload/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" }) |