diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-10 23:10:20 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-10 23:10:20 +0100 |
commit | 05f26e18f1c0bbb1f5f57781276c36c35d3649ca (patch) | |
tree | 4c2744c5671069bf2e15a8aa5e056483400114fd | |
parent | [Keep2shareCc] Added handling of large file error for free users (diff) | |
parent | Format error in Default config (diff) | |
download | pyload-05f26e18f1c0bbb1f5f57781276c36c35d3649ca.tar.xz |
Merge pull request #869 from Velociraptor85/patch-1
[Captcha9kw] Format error in Default config
-rwxr-xr-x | module/plugins/hooks/Captcha9kw.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py index c8f034847..11fbf6448 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.15" + __version__ = "0.16" __config__ = [("activated", "bool", "Activated", True), ("force", "bool", "Force captcha resolving even if client is connected", True), @@ -25,7 +25,7 @@ class Captcha9kw(Hook): ("captchaperhour", "int", "Captcha per hour", "9999"), ("prio", "int", "Priority (max. 20)(Cost +0 -> +20)", "0"), ("queue", "int", "Max. Queue (max. 999)", "0"), - ("hoster_options", "string", "Hoster options (Format: pluginname:prio=1:selfsolfe=1:confirm=1:timeout=900;)", "ShareonlineBiz:prio=0:timeout=999;UploadedTo:prio=0:timeout=999;SerienjunkiesOrg:prio=1:min=3;max=3;timeout=90"), + ("hoster_options", "string", "Hoster options (Format: pluginname:prio=1:selfsolfe=1:confirm=1:timeout=900;)", "ShareonlineBiz:prio=0:timeout=999;UploadedTo:prio=0:timeout=999;SerienjunkiesOrg:prio=1:min=3:max=3:timeout=90;"), ("selfsolve", "bool", "If enabled and you have a 9kw client active only you will get your captcha to solve it (Selfsolve)", "0"), ("passkey", "password", "API key", ""), ("timeout", "int", "Timeout (min. 60s, max. 3999s)", "900")] |