diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-09 23:26:18 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-09 23:26:18 +0100 |
commit | 164ff94bd87b8b0de3c872b0b60153ac5abfad4b (patch) | |
tree | 488bca79d3da2b6a0a75d526ee51eb9c51930bed /module | |
parent | [MultiHook] No freezes + better list error handling (diff) | |
download | pyload-164ff94bd87b8b0de3c872b0b60153ac5abfad4b.tar.xz |
[ExtractArchive] Fix https://github.com/pyload/pyload/issues/1241
Diffstat (limited to 'module')
-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 6a25602e8..edf25b8c7 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -108,7 +108,7 @@ class ArchiveQueue(object): class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.32" + __version__ = "1.33" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract with full paths" , True ), @@ -474,7 +474,7 @@ class ExtractArchive(Hook): print_exc() finally: - pyfile.finishIfDone() + thread.finishFile(pyfile) self.manager.dispatchEvent("archive_extract_failed", pyfile) |