diff options
author | 2016-07-16 16:53:38 +0200 | |
---|---|---|
committer | 2016-07-16 16:53:38 +0200 | |
commit | 6b40f7eafa9d1a8784955bbfd0c622ec87c4c033 (patch) | |
tree | 1d96e62179b65503d868c514ad4697e714385c9f /module/plugins/internal/UnRar.py | |
parent | [YoutubeCom] fix #2542 (diff) | |
parent | increased version number (diff) | |
download | pyload-6b40f7eafa9d1a8784955bbfd0c622ec87c4c033.tar.xz |
Merge pull request #2545 from EikeKre/fix_unpack_zip
Fix unpack zipfiles
Diffstat (limited to 'module/plugins/internal/UnRar.py')
-rw-r--r-- | module/plugins/internal/UnRar.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index 18416a4fe..f942d35a5 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import decode, encode, fsjoin, renice class UnRar(Extractor): __name__ = "UnRar" __type__ = "extractor" - __version__ = "1.32" + __version__ = "1.33" __status__ = "testing" __description__ = """RAR extractor plugin""" @@ -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 (.+)') |