diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-24 01:52:04 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-24 01:52:04 +0100 |
commit | d6fc06740679154f67a0f95aba5463dda1ecf3fb (patch) | |
tree | 773512e1811e61a1a0cea772f2a3f01314c52c0d | |
parent | [CaptchaService] Fix https://github.com/pyload/pyload/issues/1069 (diff) | |
download | pyload-d6fc06740679154f67a0f95aba5463dda1ecf3fb.tar.xz |
[ExtractArchive] Fix encrypted flag init
-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 f2f4b5207..38459e5f1 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -58,7 +58,7 @@ from module.utils import save_join, uniqify class ExtractArchive(Hook): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.05" + __version__ = "1.06" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract full path" , True ), @@ -302,7 +302,7 @@ class ExtractArchive(Hook): try: progress = lambda x: pyfile.setProgress(x) - encrypted = True #@TODO: set to `False` + encrypted = False passwords = self.getPasswords() try: |