summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/extractor/SevenZip.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/extractor/SevenZip.py
parentFix plugins to work on 0.4.10 (diff)
downloadpyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz
Diffstat (limited to 'pyload/plugin/extractor/SevenZip.py')
-rw-r--r--pyload/plugin/extractor/SevenZip.py10
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")]