diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 23:52:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 23:52:43 +0100 |
commit | b4515ea17dd64df7647f7d7d91ebc0c8a46d5433 (patch) | |
tree | 3339b4e46fceea698fb942388786b2064ae53ace /module/plugins/hooks/ExtractArchive.py | |
parent | Fix https://github.com/pyload/pyload/issues/1120 (diff) | |
download | pyload-b4515ea17dd64df7647f7d7d91ebc0c8a46d5433.tar.xz |
Fix https://github.com/pyload/pyload/issues/1120 (2)
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index f1641d639..dde1a5ddc 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -99,7 +99,7 @@ class ArchiveQueue(object): class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.20" + __version__ = "1.21" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract with full paths" , True ), @@ -252,7 +252,7 @@ class ExtractArchive(Hook): new_files_ids = [] if extensions: - files_ids = [(fname, fid) for fname, id in files_ids \ + files_ids = [(fname, fid) for fname, fid in files_ids \ if filter(lambda ext: fname.lower().endswith(ext), extensions)] for Extractor in self.extractors: |