From e2f69390b3e05edfc273e7302c02f61a8b6a4976 Mon Sep 17 00:00:00 2001
From: Stefano <l.stickell@yahoo.it>
Date: Mon, 15 Jul 2013 22:51:17 +0200
Subject: Captcha9kw: fixed bad gettext use(cherry picked from commit
 57e68cccae1a959c3d1ca54938ef2cd7567fc45c)

Conflicts:
	pyload/plugins/hooks/Captcha9kw.py
---
 pyload/plugins/hooks/Captcha9kw.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'pyload')

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" })
-- 
cgit v1.2.3