diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-06-03 21:27:56 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-06-03 21:27:56 +0200 |
commit | 6328dfe998ce791ea24368b820a5b637eb1f86f7 (patch) | |
tree | 03a90456b12a6e01501e1fffbb00226cdaf5436b /module/plugins/hooks | |
parent | Merge pull request #147 from vuolter/pluginsloadfix (diff) | |
download | pyload-6328dfe998ce791ea24368b820a5b637eb1f86f7.tar.xz |
getConfig instead getConf for all
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 a5a973b7f..f55589fec 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -58,7 +58,7 @@ class ExtractArchive(Hook): Provides: unrarFinished (folder, filename) """ __name__ = "ExtractArchive" - __version__ = "0.12" + __version__ = "0.13" __description__ = "Extract different kind of archives" __config__ = [("activated", "bool", "Activated", True), ("fullpath", "bool", "Extract full path", True), @@ -153,7 +153,7 @@ class ExtractArchive(Hook): out = save_join(dl, p.folder, self.getConfig("destination"), "") #relative to package folder if destination is relative, otherwise absolute path overwrites them - if self.getConf("subfolder"): + if self.getConfig("subfolder"): out = join(out, fs_encode(p.folder)) if not exists(out): |