summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/ExtractArchive.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-17 13:53:09 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-17 13:53:09 +0200
commit96e9e7503f34260a2c34dd4f17d03287936e4d31 (patch)
treeec6a7049ec03e91fb856850e0a50cb372d2b3aaf /module/plugins/hooks/ExtractArchive.py
parentBitshareCom: fixed #188 (diff)
parentfixed log api call for several plugins (diff)
downloadpyload-96e9e7503f34260a2c34dd4f17d03287936e4d31.tar.xz
Merge pull request #199 from vuolter/pluginlogfix
Fix log api call for several plugins
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-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 f55589fec..bc5aa0f49 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.13"
+ __version__ = "0.14"
__description__ = "Extract different kind of archives"
__config__ = [("activated", "bool", "Activated", True),
("fullpath", "bool", "Extract full path", True),
@@ -310,4 +310,4 @@ class ExtractArchive(Hook):
gid = getgrnam(self.config["permission"]["group"])[2]
chown(f, uid, gid)
except Exception, e:
- self.log.warning(_("Setting User and Group failed"), e)
+ self.logWarning(_("Setting User and Group failed"), e)