From 9f5aa7aec672ee184a640910fcda2d818e8f19fe Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Thu, 29 Jan 2015 23:55:40 +0100 Subject: [ExtractArchive] Fix https://github.com/pyload/pyload/issues/1100 --- module/plugins/hooks/ExtractArchive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hooks') 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 -- cgit v1.2.3