diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 02:14:07 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 02:14:07 +0200 |
commit | a6670e8dc60b79a1979eb7d3fed4965ea03731b9 (patch) | |
tree | 11bc4b51b67aa7288496599da399e53f0b1eff59 | |
parent | Merge pull request #1685 from GammaC0de/patch-2 (diff) | |
parent | Fix #1603 (diff) | |
download | pyload-a6670e8dc60b79a1979eb7d3fed4965ea03731b9.tar.xz |
Merge pull request #1689 from TodsDeath/patch-2
Fix #1603
-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 92128c77f..0386991d9 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.24" + __version__ = "1.25" __status__ = "testing" __description__ = """Rar extractor plugin""" @@ -177,7 +177,7 @@ class UnRar(Extractor): #: eventually Multipart Files files.extend(fs_join(dir, os.path.basename(file)) for file in filter(self.is_multipart, os.listdir(dir)) - if re.sub(self.re_multipart, ".rar", name) is re.sub(self.re_multipart, ".rar", file)) + if re.sub(self.re_multipart, ".rar", name) == re.sub(self.re_multipart, ".rar", file)) return files |