diff options
author | 2015-10-20 01:36:15 +0200 | |
---|---|---|
committer | 2015-10-20 01:36:15 +0200 | |
commit | 65ecd70df23ffecfbb84c11807edfd284360a5f9 (patch) | |
tree | 08701a8d2e2939b08e6eed601cbed9bfcb2069ea /module/plugins/internal/Extractor.py | |
parent | Merge pull request #2074 from GammaC0de/patch-6 (diff) | |
download | pyload-65ecd70df23ffecfbb84c11807edfd284360a5f9.tar.xz |
Spare fixes (2)
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 864792e49..95395dd1f 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -36,7 +36,7 @@ class PasswordError(Exception): class Extractor(Plugin): __name__ = "Extractor" __type__ = "extractor" - __version__ = "0.37" + __version__ = "0.38" __status__ = "testing" __description__ = """Base extractor plugin""" @@ -76,7 +76,7 @@ class Extractor(Plugin): for fname, id, fout in files_ids: if cls.isarchive(fname): - pname = re.sub(cls.re_multipart, "", fname) if cls.is_multipart(fname) else os.path.splitext(fname)[0] + pname = re.sub(cls.re_multipart, "", fname) if cls.ismultipart(fname) else os.path.splitext(fname)[0] if pname not in processed: processed.append(pname) targets.append((fname, id, fout)) |