diff options
| author | 2014-04-11 12:15:32 +0200 | |
|---|---|---|
| committer | 2014-04-11 12:15:32 +0200 | |
| commit | d27113cef108461e2363cc4c88c4a1d01222c9e9 (patch) | |
| tree | 3869f767de8b53de52a7e8fc32fa99f2b3c32409 /module/plugins/hooks/Captcha9kw.py | |
| parent | Fix __type__ for crypters (diff) | |
| download | pyload-d27113cef108461e2363cc4c88c4a1d01222c9e9.tar.xz | |
Fix __config__
Merges vuolter/pyload@83ff313
Diffstat (limited to 'module/plugins/hooks/Captcha9kw.py')
| -rwxr-xr-x | module/plugins/hooks/Captcha9kw.py | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py index b2895a357..1d7df86ed 100755 --- a/module/plugins/hooks/Captcha9kw.py +++ b/module/plugins/hooks/Captcha9kw.py @@ -33,15 +33,15 @@ class Captcha9kw(Hook):      __description__ = """Send captchas to 9kw.eu"""      __config__ = [("activated", "bool", "Activated", False),                    ("force", "bool", "Force CT even if client is connected", True), -                  ("https", "bool", "Enable HTTPS", "False"), -                  ("confirm", "bool", "Confirm Captcha (Cost +6)", "False"), -                  ("captchaperhour", "int", "Captcha per hour (max. 9999)", "9999"), -                  ("prio", "int", "Prio 1-10 (Cost +1-10)", "0"), +                  ("https", "bool", "Enable HTTPS", False), +                  ("confirm", "bool", "Confirm Captcha (Cost +6)", False), +                  ("captchaperhour", "int", "Captcha per hour (max. 9999)", 9999), +                  ("prio", "int", "Prio 1-10 (Cost +1-10)", 0),                    ("selfsolve", "bool",                     "If enabled and you have a 9kw client active only you will get your captcha to solve it (Selfsolve)", -                   "False"), -                  ("timeout", "int", "Timeout (max. 300)", "300"), -                  ("passkey", "password", "API key", ""), ] +                   False), +                  ("timeout", "int", "Timeout (max. 300)", 300), +                  ("passkey", "password", "API key", "")]      __author_name__ = "RaNaN"      __author_mail__ = "RaNaN@pyload.org" | 
