diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-08 00:30:57 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-08 00:30:57 +0200 |
commit | 41a9fc39c201f663ee308840b8443f760b3678da (patch) | |
tree | a7eb9914bbc55bbc46f5a5f6929c6c6c95c81244 /module | |
parent | [UserAgentSwitcher] Default activated set to True (diff) | |
download | pyload-41a9fc39c201f663ee308840b8443f760b3678da.tar.xz |
[ExtractArchive] Fix https://github.com/pyload/pyload/issues/1322
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 595512c12..b418f802f 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -106,7 +106,7 @@ class ArchiveQueue(object): class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.39" + __version__ = "1.40" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract with full paths" , True ), @@ -468,7 +468,7 @@ class ExtractArchive(Hook): deltotrash = self.getConfig('deltotrash') for f in delfiles: file = fs_encode(f) - if not os.path.exists(file) + if not os.path.exists(file): continue if not deltotrash: |