diff options
author | 2015-02-16 03:40:45 +0100 | |
---|---|---|
committer | 2015-02-16 03:40:45 +0100 | |
commit | fcead1870013b6a970eca7878a66dbe783c80ea3 (patch) | |
tree | 9837d3b2cacba2f5d1a4c620b1cd02f26571b454 /pyload/plugin/hook/Captcha9kw.py | |
parent | Init cosmetics (diff) | |
download | pyload-fcead1870013b6a970eca7878a66dbe783c80ea3.tar.xz |
Partially revert acc46fc3497a66a427b795b4a22c6e71d69185a1
Diffstat (limited to 'pyload/plugin/hook/Captcha9kw.py')
-rw-r--r-- | pyload/plugin/hook/Captcha9kw.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/hook/Captcha9kw.py b/pyload/plugin/hook/Captcha9kw.py index dafbf72b3..a74983d9b 100644 --- a/pyload/plugin/hook/Captcha9kw.py +++ b/pyload/plugin/hook/Captcha9kw.py @@ -14,11 +14,11 @@ from pyload.plugin.Addon import Addon class Captcha9kw(Addon): - __name = "Captcha9kw" - __type = "hook" - __version = "0.26" + __name__ = "Captcha9kw" + __type__ = "hook" + __version__ = "0.26" - __config = [("ssl" , "bool" , "Use HTTPS" , True ), + __config__ = [("ssl" , "bool" , "Use HTTPS" , True ), ("force" , "bool" , "Force captcha resolving even if client is connected" , True ), ("confirm" , "bool" , "Confirm Captcha (cost +6 credits)" , False ), ("captchaperhour", "int" , "Captcha per hour" , "9999" ), @@ -30,9 +30,9 @@ class Captcha9kw(Addon): ("passkey" , "password", "API key" , "" ), ("timeout" , "int" , "Timeout in seconds (min 60, max 3999)" , "900" )] - __description = """Send captchas to 9kw.eu""" - __license = "GPLv3" - __authors = [("RaNaN", "RaNaN@pyload.org"), + __description__ = """Send captchas to 9kw.eu""" + __license__ = "GPLv3" + __authors__ = [("RaNaN", "RaNaN@pyload.org"), ("Walter Purcaro", "vuolter@gmail.com")] |