diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 12:37:00 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 12:37:00 +0200 |
commit | 66d5610dff9b7a5e56075e195f88dc0f60441e72 (patch) | |
tree | 68121281efcc6789ca197539b648c56788c09331 /module | |
parent | Fix https://github.com/pyload/pyload/issues/1595 (diff) | |
download | pyload-66d5610dff9b7a5e56075e195f88dc0f60441e72.tar.xz |
Fix https://github.com/pyload/pyload/issues/1594
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/Extractor.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 907113a7e..d511b7602 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -22,7 +22,7 @@ class PasswordError(Exception): class Extractor(Plugin): __name__ = "Extractor" __type__ = "extractor" - __version__ = "0.29" + __version__ = "0.30" __status__ = "testing" __description__ = """Base extractor plugin""" @@ -67,8 +67,8 @@ class Extractor(Plugin): processed = [] for fname, id, fout in files_ids: - if cls.isArchive(fname): - pname = re.sub(cls.re_multipart, "", fname) if cls.isMultipart(fname) else os.path.splitext(fname)[0] + if cls.is_archive(fname): + pname = re.sub(cls.re_multipart, "", fname) if cls.is_multipart(fname) else os.path.splitext(fname)[0] if pname not in processed: processed.append(pname) targets.append((fname, id, fout)) |