summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-12 01:55:00 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-12 01:55:00 +0100
commit7699d4b88c6245bd31d94ff0b5954cdd7c08ca73 (patch)
treedec89cdc21aa52d53c3a27c4623791ea8e231649
parent[Plugin] Save reason as pyfile.error when fails (diff)
downloadpyload-7699d4b88c6245bd31d94ff0b5954cdd7c08ca73.tar.xz
[Captcha9kw] Fix str.strip
-rwxr-xr-xmodule/plugins/hooks/Captcha9kw.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py
index bdccf2f76..ff604080d 100755
--- a/module/plugins/hooks/Captcha9kw.py
+++ b/module/plugins/hooks/Captcha9kw.py
@@ -17,7 +17,7 @@ from module.plugins.Hook import Hook
class Captcha9kw(Hook):
__name__ = "Captcha9kw"
__type__ = "hook"
- __version__ = "0.19"
+ __version__ = "0.20"
__config__ = [("activated", "bool", "Activated", True),
("force", "bool", "Force captcha resolving even if client is connected", True),
@@ -88,7 +88,7 @@ class Captcha9kw(Hook):
for opt in self.getConfig("hoster_options").split('|'):
- details = map(strip(), opt.split(':'))
+ details = map(str.strip, opt.split(':'))
if not details or details[0].lower() != pluginname.lower():
continue
@@ -175,7 +175,7 @@ class Captcha9kw(Hook):
self.fail(_("Too many captchas in queue"))
for opt in self.getConfig("hoster_options").split('|'):
- details = map(strip(), opt.split(':'))
+ details = map(str.strip, opt.split(':'))
if not details or details[0].lower() != pluginname.lower():
continue