diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-29 23:55:40 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-29 23:55:40 +0100 |
commit | 9f5aa7aec672ee184a640910fcda2d818e8f19fe (patch) | |
tree | 2360ae59e2bf979522e7df3233278a8e684466ba | |
parent | [UptoboxCom] Improve __pattern__ (diff) | |
download | pyload-9f5aa7aec672ee184a640910fcda2d818e8f19fe.tar.xz |
[ExtractArchive] Fix https://github.com/pyload/pyload/issues/1100
-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 8c5af1bb5..c91228850 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -91,7 +91,7 @@ class ArchiveQueue(object): class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.12" + __version__ = "1.13" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract full path" , True ), @@ -342,7 +342,7 @@ class ExtractArchive(Hook): self.logWarning(fname, _("Repairing...")) archive.repair() - except PasswordError): + except PasswordError: self.logInfo(fname, _("Password protected")) encrypted = True |