diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-25 19:09:21 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-25 19:09:21 +0100 |
commit | 99ed44b0d919a33e3a559472893163b347cd1c37 (patch) | |
tree | e8f9635ce9c3ab9c0eaa5869a8df5432d447151e /module/plugins/hooks | |
parent | [ClickAndLoad] Fix bad except (diff) | |
download | pyload-99ed44b0d919a33e3a559472893163b347cd1c37.tar.xz |
Fix reverted Extractor
Diffstat (limited to 'module/plugins/hooks')
-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 9e530ce8f..20e585046 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -58,7 +58,7 @@ from module.utils import save_join, fs_encode class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.07" + __version__ = "1.08" __config__ = [("activated", "bool", "Activated", True), ("fullpath", "bool", "Extract full path", True), @@ -254,7 +254,7 @@ class ExtractArchive(Hook): success = False if not plugin.checkArchive(): - plugin.extract(progress, pw) + plugin.extract(progress, self.getPasswords()) success = True else: self.logInfo(basename(plugin.file), _("Password protected")) |