diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-30 00:30:53 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-09-30 00:30:53 +0200 |
commit | 3b3a4bd889286777ba6a590a1f74cf3edae36a72 (patch) | |
tree | c556a0f6072c9c7f41e9608a655aa0ae1e706221 /module/plugins/accounts/MegaRapidoNet.py | |
parent | [XFSHoster] Revert https://github.com/pyload/pyload/pull/1883 (diff) | |
download | pyload-3b3a4bd889286777ba6a590a1f74cf3edae36a72.tar.xz |
Add __config__ to MultiAccount (and XFSAccount) based plugins
Diffstat (limited to 'module/plugins/accounts/MegaRapidoNet.py')
-rw-r--r-- | module/plugins/accounts/MegaRapidoNet.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/module/plugins/accounts/MegaRapidoNet.py b/module/plugins/accounts/MegaRapidoNet.py index 84ef65e61..44b154344 100644 --- a/module/plugins/accounts/MegaRapidoNet.py +++ b/module/plugins/accounts/MegaRapidoNet.py @@ -12,6 +12,10 @@ class MegaRapidoNet(Account): __version__ = "0.06" __status__ = "testing" + __config__ = [("mh_mode" , "all;listed;unlisted", "Filter hosters to use" , "all"), + ("mh_list" , "str" , "Hoster list (comma separated)", "" ), + ("mh_interval", "int" , "Reload interval in minutes" , 60 )] + __description__ = """MegaRapido.net account plugin""" __license__ = "GPLv3" __authors__ = [("Kagenoshin", "kagenoshin@gmx.ch")] |