summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/Container.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-02-16 22:38:45 +0100
commit270c1ee85edcd1e9e10511833b422d93dfca192a (patch)
treeeb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/Container.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/Container.py')
-rw-r--r--pyload/plugin/Container.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/Container.py b/pyload/plugin/Container.py
index bfc5713a7..e2e0f2248 100644
--- a/pyload/plugin/Container.py
+++ b/pyload/plugin/Container.py
@@ -12,16 +12,16 @@ from pyload.utils import safe_join
class Container(Crypter):
- __name__ = "Container"
- __type__ = "container"
- __version__ = "0.01"
+ __name = "Container"
+ __type = "container"
+ __version = "0.01"
- __pattern__ = r'^unmatchable$'
- __config__ = [] #: [("name", "type", "desc", "default")]
+ __pattern = r'^unmatchable$'
+ __config = [] #: [("name", "type", "desc", "default")]
- __description__ = """Base container decrypter plugin"""
- __license__ = "GPLv3"
- __authors__ = [("mkaay", "mkaay@mkaay.de")]
+ __description = """Base container decrypter plugin"""
+ __license = "GPLv3"
+ __authors = [("mkaay", "mkaay@mkaay.de")]
def preprocessing(self, thread):