diff options
Diffstat (limited to 'module/plugins/Hoster.py')
-rw-r--r-- | module/plugins/Hoster.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/module/plugins/Hoster.py b/module/plugins/Hoster.py index 535d7e3f2..0768391e5 100644 --- a/module/plugins/Hoster.py +++ b/module/plugins/Hoster.py @@ -9,12 +9,13 @@ def getInfo(self): class Hoster(Plugin): - __name__ = "Hoster" - __type__ = "hoster" + __name__ = "Hoster" + __type__ = "hoster" __version__ = "0.1" __pattern__ = None + __config__ = [] #: [("name", "type", "desc", "default")] __description__ = """Base hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("mkaay", "mkaay@mkaay.de")] + __license__ = "GPLv3" + __authors__ = [("mkaay", "mkaay@mkaay.de")] |