summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-24 20:55:57 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-24 20:55:57 +0100
commitf26fde426c34c7be4d8b3a4f0032f2a4692f3d4c (patch)
treeafd046154725fa19372ac78fd9be1b6aa7f0397c
parentMerge pull request #1278 from immenz/dev_extract (diff)
parent[ExtractArchive] Bugfix (diff)
downloadpyload-f26fde426c34c7be4d8b3a4f0032f2a4692f3d4c.tar.xz
Merge pull request #1284 from immenz/dev_extract
[ExtractArchive] Bugfix
-rw-r--r--module/plugins/internal/UnRar.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py
index b75e21f57..87cf61a62 100644
--- a/module/plugins/internal/UnRar.py
+++ b/module/plugins/internal/UnRar.py
@@ -22,7 +22,7 @@ def renice(pid, value):
class UnRar(Extractor):
__name__ = "UnRar"
- __version__ = "1.17"
+ __version__ = "1.18"
__description__ = """Rar extractor plugin"""
__license__ = "GPLv3"
@@ -80,11 +80,7 @@ class UnRar(Extractor):
@classmethod
def isMultipart(cls, filename):
- multipart = cls.re_multipart.search(filename)
- if multipart:
- return True if not multipart.group(3) else False
-
- return False
+ return True if cls.re_multipart.search(filename) else False
def test(self, password):