diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-26 12:44:15 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-26 12:44:15 +0100 |
commit | ce103ce1e60661f7bcdf6a033335134de61d48b1 (patch) | |
tree | 29b9421062cc8341dc10b6ca65e9a64802c3db71 /pyload/plugin/hook/PutdriveCom.py | |
parent | .min.css -> .css (diff) | |
download | pyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz |
Prepare to merging
Diffstat (limited to 'pyload/plugin/hook/PutdriveCom.py')
-rw-r--r-- | pyload/plugin/hook/PutdriveCom.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/hook/PutdriveCom.py b/pyload/plugin/hook/PutdriveCom.py index 126eb86e8..85e2f541d 100644 --- a/pyload/plugin/hook/PutdriveCom.py +++ b/pyload/plugin/hook/PutdriveCom.py @@ -4,15 +4,15 @@ from pyload.plugin.hook.ZeveraCom import ZeveraCom class PutdriveCom(ZeveraCom): - __name = "PutdriveCom" - __type = "hook" - __version = "0.01" + __name__ = "PutdriveCom" + __type__ = "hook" + __version__ = "0.01" - __config = [("mode" , "all;listed;unlisted", "Use for plugins (if supported)" , "all"), + __config__ = [("mode" , "all;listed;unlisted", "Use for plugins (if supported)" , "all"), ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ), ("revertfailed", "bool" , "Revert to standard download if download fails", False), ("interval" , "int" , "Reload interval in hours (0 to disable)" , 12 )] - __description = """Putdrive.com hook plugin""" - __license = "GPLv3" - __authors = [("Walter Purcaro", "vuolter@gmail.com")] + __description__ = """Putdrive.com hook plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] |