diff options
author | 2016-07-14 21:05:08 +0200 | |
---|---|---|
committer | 2016-07-14 21:05:08 +0200 | |
commit | c6f95ff8f8043a7e6c0cda2c092932fa4b98954a (patch) | |
tree | a8c62101f12785368feb1311d6ebcb3126ef7ed0 /module/plugins/internal/UnRar.py | |
parent | [YoutubeCom] fix #2542 (diff) | |
download | pyload-c6f95ff8f8043a7e6c0cda2c092932fa4b98954a.tar.xz |
fixed unpack zip and 7z archive
Diffstat (limited to 'module/plugins/internal/UnRar.py')
-rw-r--r-- | module/plugins/internal/UnRar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index 18416a4fe..e5f1cdf39 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -23,8 +23,8 @@ class UnRar(Extractor): CMD = "unrar" - EXTENSIONS = ["rar", "zip", "cab", "arj", "lzh", "tar", "gz", "ace", "uue", - "bz2", "jar", "iso", "7z", "xz", "z"] + EXTENSIONS = ["rar", "cab", "arj", "lzh", "tar", "gz", "ace", "uue", + "bz2", "jar", "iso", "xz", "z"] _RE_PART = re.compile(r'\.(part|r)\d+(\.rar|\.rev)?(\.bad)?', re.I) _RE_FIXNAME = re.compile(r'Building (.+)') |