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/extractor/UnZip.py | |
parent | Fix plugins to work on 0.4.10 (diff) | |
download | pyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz |
Diffstat (limited to 'pyload/plugin/extractor/UnZip.py')
-rw-r--r-- | pyload/plugin/extractor/UnZip.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugin/extractor/UnZip.py b/pyload/plugin/extractor/UnZip.py index cb6621f99..881642f2f 100644 --- a/pyload/plugin/extractor/UnZip.py +++ b/pyload/plugin/extractor/UnZip.py @@ -11,12 +11,12 @@ from pyload.utils import fs_encode class UnZip(Extractor): - __name__ = "UnZip" - __version__ = "1.10" + __name = "UnZip" + __version = "1.10" - __description__ = """Zip extractor plugin""" - __license__ = "GPLv3" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + __description = """Zip extractor plugin""" + __license = "GPLv3" + __authors = [("Walter Purcaro", "vuolter@gmail.com")] EXTENSIONS = [".zip", ".zip64"] |