diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-07-29 20:08:07 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-07-29 20:08:07 +0200 |
commit | ff21df6b2ccdaf5161351ab69086d358a98c241d (patch) | |
tree | d958eeb0d78ee6eec38349ed2884bb33ae429e6f /module/plugins/Container.py | |
parent | more improvements and cleaned some imports (diff) | |
download | pyload-ff21df6b2ccdaf5161351ab69086d358a98c241d.tar.xz |
restart working and client information
Diffstat (limited to 'module/plugins/Container.py')
-rw-r--r-- | module/plugins/Container.py | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/module/plugins/Container.py b/module/plugins/Container.py index 794c52508..729dc11e1 100644 --- a/module/plugins/Container.py +++ b/module/plugins/Container.py @@ -17,9 +17,11 @@ @author: mkaay """ -from module.plugins.Plugin import Plugin +### can be left blank and removed in future, no seperation of crypter and container needed atm. -class Container(Plugin): +from module.plugins.Crypter import Crypter + +class Container(Crypter): __name__ = "Container" __version__ = "0.1" __pattern__ = None @@ -27,15 +29,3 @@ class Container(Plugin): __description__ = """Base container plugin""" __author_name__ = ("mkaay") __author_mail__ = ("mkaay@mkaay.de") - - def decrypt(self): - pass - - def createNewPackage(self): - return False - - def getPackages(self): - return [] - - def getLinks(self): - return [] |