summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-28 01:16:37 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-28 01:16:37 +0100
commit6cdce819e11b9bd1f3048513e7a1e0e5cf70a441 (patch)
tree43c4632920e43c7714876df719cdcd47d2800cb7 /module
parent[DLC] Improve (diff)
downloadpyload-6cdce819e11b9bd1f3048513e7a1e0e5cf70a441.tar.xz
[ExtractArchive] Fix typo
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/ExtractArchive.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py
index 11764759f..5c4e9bc82 100644
--- a/module/plugins/hooks/ExtractArchive.py
+++ b/module/plugins/hooks/ExtractArchive.py
@@ -55,13 +55,13 @@ from module.utils import fs_decode, save_join, uniqify
class ExtractArchive(Hook):
__name__ = "ExtractArchive"
__type__ = "hook"
- __version__ = "1.09"
+ __version__ = "1.10"
__config__ = [("activated" , "bool" , "Activated" , True ),
("fullpath" , "bool" , "Extract full path" , True ),
("overwrite" , "bool" , "Overwrite files" , False ),
("keepbroken" , "bool" , "Extract broken archives" , False ),
- # ("repair" , "bool" , "Repair broken archives" , True ),
+ ("repair" , "bool" , "Repair broken archives" , True ),
("passwordfile" , "file" , "Store passwords in file" , "archive_password.txt" ),
("delete" , "bool" , "Delete archive when successfully extracted", False ),
("subfolder" , "bool" , "Create subfolder for each package" , False ),