diff options
author | 2015-02-08 13:47:59 +0100 | |
---|---|---|
committer | 2015-02-09 23:36:28 +0100 | |
commit | 2a809297f288a585d96af0d8afd894c2a2f695fb (patch) | |
tree | 2b9d53e140977c25023059db5be9ea91469dd556 /module/plugins/internal/Extractor.py | |
parent | [ExtractArchive] Fix: Show Status/Progressbar (diff) | |
download | pyload-2a809297f288a585d96af0d8afd894c2a2f695fb.tar.xz |
[ExtractArchive] correct fullpath behavior, bugfix
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 45c13c159..a5a8756d8 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -19,7 +19,7 @@ class PasswordError(Exception): class Extractor: __name__ = "Extractor" - __version__ = "0.18" + __version__ = "0.19" __description__ = """Base extractor plugin""" __license__ = "GPLv3" @@ -50,7 +50,7 @@ class Extractor: :param files_ids: List of filepathes :return: List of targets, id tuple list """ - return [(fname, id) for fname, id in files_ids if cls.isArchive(fname)] + return [(fname, id, fout) for fname, id, fout in files_ids if cls.isArchive(fname)] def __init__(self, manager, filename, out, |