summaryrefslogtreecommitdiffstats
path: root/module/plugins/Hoster.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-14 18:10:40 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-14 18:10:40 +0200
commite4077960822e24f3041e16e7e818c105e372152d (patch)
tree12580f141668f4eb0edf4b90fbf3417e8dcc3a3a /module/plugins/Hoster.py
parentfixes syntax error on old python versions (diff)
downloadpyload-e4077960822e24f3041e16e7e818c105e372152d.tar.xz
first version of new extract plugin
Diffstat (limited to 'module/plugins/Hoster.py')
-rw-r--r--module/plugins/Hoster.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/plugins/Hoster.py b/module/plugins/Hoster.py
index 0f2abdcf9..814a70949 100644
--- a/module/plugins/Hoster.py
+++ b/module/plugins/Hoster.py
@@ -19,6 +19,10 @@
from module.plugins.Plugin import Plugin
+def getInfo(self):
+ #result = [ .. (name, size, status, url) .. ]
+ return
+
class Hoster(Plugin):
__name__ = "Hoster"
__version__ = "0.1"
@@ -27,8 +31,3 @@ class Hoster(Plugin):
__description__ = """Base hoster plugin"""
__author_name__ = ("mkaay")
__author_mail__ = ("mkaay@mkaay.de")
-
- def getInfo(self):
- #result = [ .. (name, size, status, url) .. ]
- return
-