diff options
author | 2014-12-10 18:42:46 +0100 | |
---|---|---|
committer | 2014-12-10 18:42:46 +0100 | |
commit | 1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4 (patch) | |
tree | e17b69106d61342ae09ae887beabdd805339593e /pyload/plugins/internal/Hoster.py | |
parent | Fix previous merge (diff) | |
download | pyload-1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4.tar.xz |
Revert plugin directory structure
Diffstat (limited to 'pyload/plugins/internal/Hoster.py')
-rw-r--r-- | pyload/plugins/internal/Hoster.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/pyload/plugins/internal/Hoster.py b/pyload/plugins/internal/Hoster.py deleted file mode 100644 index ea225262e..000000000 --- a/pyload/plugins/internal/Hoster.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- - -from pyload.plugins.Plugin import Plugin - - -def getInfo(self): - #result = [ .. (name, size, status, url) .. ] - return - - -class Hoster(Plugin): - __name__ = "Hoster" - __type__ = "hoster" - __version__ = "0.02" - - __pattern__ = r'^unmatchable$' - __config__ = [] #: [("name", "type", "desc", "default")] - - __description__ = """Base hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("mkaay", "mkaay@mkaay.de")] |