From 86ad6441ac4f88ab78e8dec6f2ca8879982f6012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20H=C3=B6rnlein?= Date: Tue, 24 Mar 2015 18:55:50 +0100 Subject: [ExtractArchive] Bugfix --- module/plugins/internal/UnRar.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'module') 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): -- cgit v1.2.3