diff options
author | 2015-02-16 22:38:45 +0100 | |
---|---|---|
committer | 2015-02-16 22:38:45 +0100 | |
commit | 270c1ee85edcd1e9e10511833b422d93dfca192a (patch) | |
tree | eb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/container/DLC.py | |
parent | Fix plugins to work on 0.4.10 (diff) | |
download | pyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz |
Diffstat (limited to 'pyload/plugin/container/DLC.py')
-rw-r--r-- | pyload/plugin/container/DLC.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/container/DLC.py b/pyload/plugin/container/DLC.py index 8b8a0199b..451bab06f 100644 --- a/pyload/plugin/container/DLC.py +++ b/pyload/plugin/container/DLC.py @@ -12,15 +12,15 @@ from pyload.utils import decode, fs_encode class DLC(Container): - __name__ = "DLC" - __type__ = "container" - __version__ = "0.24" + __name = "DLC" + __type = "container" + __version = "0.24" - __pattern__ = r'.+\.dlc$' + __pattern = r'.+\.dlc$' - __description__ = """DLC container decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("RaNaN", "RaNaN@pyload.org"), + __description = """DLC container decrypter plugin""" + __license = "GPLv3" + __authors = [("RaNaN", "RaNaN@pyload.org"), ("spoob", "spoob@pyload.org"), ("mkaay", "mkaay@mkaay.de"), ("Schnusch", "Schnusch@users.noreply.github.com"), |