summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-22 10:01:17 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-22 10:01:17 +0200
commitde1ff8a35c2aa7572d10ef87e31557148bad7d51 (patch)
tree94dea53f60ce25816ff7cd746341c25ea0269247 /module
parentImprove error method + fix TEXT_ENCODING in SimpleCrypter (diff)
parentUpdate Captcha9kw.py (diff)
downloadpyload-de1ff8a35c2aa7572d10ef87e31557148bad7d51.tar.xz
Merge pull request #813 from eerozeteen/patch-1
[Captcha9kw] Fix missing brackets
Diffstat (limited to 'module')
-rwxr-xr-xmodule/plugins/hooks/Captcha9kw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py
index 7c1fa40fd..4eb7e0ffc 100755
--- a/module/plugins/hooks/Captcha9kw.py
+++ b/module/plugins/hooks/Captcha9kw.py
@@ -130,7 +130,7 @@ class Captcha9kw(Hook):
"pyload": "1",
"source": "pyload",
"id": task.data['ticket']})
- self.logInfo(_("Request correct", response)
+ self.logInfo(_("Request correct"), response)
except BadHeader, e:
self.logError(_("Could not send correct request."), e)
@@ -149,7 +149,7 @@ class Captcha9kw(Hook):
"pyload": "1",
"source": "pyload",
"id": task.data['ticket']})
- self.logInfo(_("Request refund", response)
+ self.logInfo(_("Request refund"), response)
except BadHeader, e:
self.logError(_("Could not send refund request."), e)