From 57e68cccae1a959c3d1ca54938ef2cd7567fc45c Mon Sep 17 00:00:00 2001 From: Stefano Date: Mon, 15 Jul 2013 22:51:17 +0200 Subject: Captcha9kw: fixed bad gettext use --- module/plugins/hooks/Captcha9kw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hooks/Captcha9kw.py') 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" }) -- cgit v1.2.3