diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 22:38:45 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 22:38:45 +0100 |
commit | 270c1ee85edcd1e9e10511833b422d93dfca192a (patch) | |
tree | eb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/extractor/SevenZip.py | |
parent | Fix plugins to work on 0.4.10 (diff) | |
download | pyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz |
Diffstat (limited to 'pyload/plugin/extractor/SevenZip.py')
-rw-r--r-- | pyload/plugin/extractor/SevenZip.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugin/extractor/SevenZip.py b/pyload/plugin/extractor/SevenZip.py index 4b23c6ff2..22a7af941 100644 --- a/pyload/plugin/extractor/SevenZip.py +++ b/pyload/plugin/extractor/SevenZip.py @@ -10,12 +10,12 @@ from pyload.utils import fs_encode, safe_join class SevenZip(UnRar): - __name__ = "SevenZip" - __version__ = "0.08" + __name = "SevenZip" + __version = "0.08" - __description__ = """7-Zip extractor plugin""" - __license__ = "GPLv3" - __authors__ = [("Michael Nowak", ""), + __description = """7-Zip extractor plugin""" + __license = "GPLv3" + __authors = [("Michael Nowak", ""), ("Walter Purcaro", "vuolter@gmail.com")] |