diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:52:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:52:10 +0100 |
commit | 34984dae733c3f3d47b41a0acfba3724d53c65a1 (patch) | |
tree | c8d970f64dacfc64cb72bf82c85d7467c99f7264 /module/plugins/hooks/OverLoadMe.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/hooks/OverLoadMe.py')
-rw-r--r-- | module/plugins/hooks/OverLoadMe.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/OverLoadMe.py b/module/plugins/hooks/OverLoadMe.py index 2fcd132a2..f4cbdd7fe 100644 --- a/module/plugins/hooks/OverLoadMe.py +++ b/module/plugins/hooks/OverLoadMe.py @@ -5,8 +5,8 @@ from module.plugins.internal.MultiHoster import MultiHoster class OverLoadMe(MultiHoster): - __name__ = "OverLoadMe" - __type__ = "hook" + __name__ = "OverLoadMe" + __type__ = "hook" __version__ = "0.01" __config__ = [("https", "bool", "Enable HTTPS", True), @@ -16,8 +16,8 @@ class OverLoadMe(MultiHoster): ("interval", "int", "Reload interval in hours (0 to disable)", 12)] __description__ = """Over-Load.me hook plugin""" - __license__ = "GPLv3" - __authors__ = [("marley", "marley@over-load.me")] + __license__ = "GPLv3" + __authors__ = [("marley", "marley@over-load.me")] def getHoster(self): |