diff options
author | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-22 00:00:13 +0200 |
---|---|---|
committer | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-22 00:00:13 +0200 |
commit | 22d531c192d4b2b3159788d514377c43f8fdde6b (patch) | |
tree | 607d6023bc0e1068415aceefdf54fb611ac30b47 /pyload/plugin/extractor/SevenZip.py | |
parent | some fixes (diff) | |
download | pyload-22d531c192d4b2b3159788d514377c43f8fdde6b.tar.xz |
now the plugin attribute '__name' is no more used it is reduntant and
obsolete
Diffstat (limited to 'pyload/plugin/extractor/SevenZip.py')
-rw-r--r-- | pyload/plugin/extractor/SevenZip.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyload/plugin/extractor/SevenZip.py b/pyload/plugin/extractor/SevenZip.py index 3c5e86602..587db5563 100644 --- a/pyload/plugin/extractor/SevenZip.py +++ b/pyload/plugin/extractor/SevenZip.py @@ -15,11 +15,12 @@ class SevenZip(UnRar): __description = """7-Zip extractor plugin""" __license = "GPLv3" - __authors = [("Michael Nowak" , "" ), - ("Walter Purcaro", "vuolter@gmail.com")] + __authors = [("Michael Nowak" , ""), + ("Walter Purcaro", "vuolter@gmail.com")] CMD = "7z" + NAME = __name__ VERSION = "" EXTENSIONS = [".7z", ".xz", ".zip", ".gz", ".gzip", ".tgz", ".bz2", ".bzip2", |