diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-27 23:05:13 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-27 23:05:13 +0100 |
commit | aa0751bcfd995e308bcd586a6965c75e68b1274b (patch) | |
tree | 8eba27735d57ca5b7137588efe219f845734de17 /module/plugins/Container.py | |
parent | [Api] Fix addPackage folder generator (diff) | |
download | pyload-aa0751bcfd995e308bcd586a6965c75e68b1274b.tar.xz |
Code cosmetics
Diffstat (limited to 'module/plugins/Container.py')
-rw-r--r-- | module/plugins/Container.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/module/plugins/Container.py b/module/plugins/Container.py index 1d93a4f4a..0e8b20a86 100644 --- a/module/plugins/Container.py +++ b/module/plugins/Container.py @@ -10,15 +10,16 @@ from module.utils import save_join class Container(Crypter): - __name__ = "Container" - __type__ = "container" + __name__ = "Container" + __type__ = "container" __version__ = "0.1" __pattern__ = None + __config__ = [] #: [("name", "type", "desc", "default")] __description__ = """Base container decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("mkaay", "mkaay@mkaay.de")] + __license__ = "GPLv3" + __authors__ = [("mkaay", "mkaay@mkaay.de")] def preprocessing(self, thread): |