summaryrefslogtreecommitdiffstats
path: root/module/PluginManager.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-27 14:23:55 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-27 14:23:55 +0200
commit1bbbd7e7e123516a8540099e5f380ba158dfef5f (patch)
tree87725c8189bf68b5832e4de44555858173051743 /module/PluginManager.py
parenthotfile fix (diff)
downloadpyload-1bbbd7e7e123516a8540099e5f380ba158dfef5f.tar.xz
locale fixes
Diffstat (limited to 'module/PluginManager.py')
-rw-r--r--module/PluginManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/PluginManager.py b/module/PluginManager.py
index 8f00b9f25..7e1c663de 100644
--- a/module/PluginManager.py
+++ b/module/PluginManager.py
@@ -282,7 +282,7 @@ class PluginManager():
try:
module = __import__(value["path"], globals(), locals(), [value["name"]] , -1)
except Exception, e:
- self.log.error(_("Error importing %s: %s") % (name, str(e)))
+ self.log.error(_("Error importing %(name): %(msg)") % {"name": name, "msg": str(e) })
self.log.error(_("You should fix dependicies or deactivate load on startup."))
continue