diff options
author | 2015-03-26 12:44:15 +0100 | |
---|---|---|
committer | 2015-03-26 12:44:15 +0100 | |
commit | ce103ce1e60661f7bcdf6a033335134de61d48b1 (patch) | |
tree | 29b9421062cc8341dc10b6ca65e9a64802c3db71 /pyload/plugin/extractor/UnZip.py | |
parent | .min.css -> .css (diff) | |
download | pyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz |
Prepare to merging
Diffstat (limited to 'pyload/plugin/extractor/UnZip.py')
-rw-r--r-- | pyload/plugin/extractor/UnZip.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/plugin/extractor/UnZip.py b/pyload/plugin/extractor/UnZip.py index 811ca7700..3c5f5ec8f 100644 --- a/pyload/plugin/extractor/UnZip.py +++ b/pyload/plugin/extractor/UnZip.py @@ -11,13 +11,13 @@ from pyload.utils import fs_encode class UnZip(Extractor): - __name = "UnZip" - __type = "extractor" - __version = "1.11" + __name__ = "UnZip" + __type__ = "extractor" + __version__ = "1.11" - __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"] |