diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 23:19:30 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 23:19:30 +0100 |
commit | 7368881d2ba95cca3f47afbb0f4ef5861f2774df (patch) | |
tree | 9e34209590c03e1bb5c5897840f7250b113d9192 /module/plugins/internal/Extractor.py | |
parent | Spare code cosmetics (diff) | |
download | pyload-7368881d2ba95cca3f47afbb0f4ef5861f2774df.tar.xz |
Extractor final fixup
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 4c38760f2..719dc613c 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -50,7 +50,7 @@ class Extractor: :param files_ids: List of filepathes :return: List of targets, id tuple list """ - raise NotImplementedError + return [(fname, id) for fname, id in files_ids if cls.isArchive(fname)] def __init__(self, manager, filename, out, |