summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hook/ExpertDecoders.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-10 19:07:53 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-10 19:07:53 +0100
commit2439bc22671dde697817291b721bfddb792a93b4 (patch)
treedad4615b7f1d664263af6a85392282329aa0b8e0 /pyload/plugins/hook/ExpertDecoders.py
parentRevert plugin directory structure (diff)
downloadpyload-2439bc22671dde697817291b721bfddb792a93b4.tar.xz
Fix plugins key attributes
Diffstat (limited to 'pyload/plugins/hook/ExpertDecoders.py')
-rw-r--r--pyload/plugins/hook/ExpertDecoders.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugins/hook/ExpertDecoders.py b/pyload/plugins/hook/ExpertDecoders.py
index a9b9bdf2c..d4d125b2a 100644
--- a/pyload/plugins/hook/ExpertDecoders.py
+++ b/pyload/plugins/hook/ExpertDecoders.py
@@ -12,16 +12,16 @@ from pyload.plugins.Addon import Addon
class ExpertDecoders(Addon):
- __name__ = "ExpertDecoders"
- __type__ = "hook"
- __version__ = "0.02"
+ __name = "ExpertDecoders"
+ __type = "hook"
+ __version = "0.02"
- __config__ = [("force", "bool", "Force CT even if client is connected", False),
- ("passkey", "password", "Access key", "")]
+ __config = [("force", "bool", "Force CT even if client is connected", False),
+ ("passkey", "password", "Access key", "")]
- __description__ = """Send captchas to expertdecoders.com"""
- __license__ = "GPLv3"
- __authors__ = [("RaNaN", "RaNaN@pyload.org"),
+ __description = """Send captchas to expertdecoders.com"""
+ __license = "GPLv3"
+ __authors = [("RaNaN", "RaNaN@pyload.org"),
("zoidberg", "zoidberg@mujmail.cz")]