summaryrefslogtreecommitdiffstats
path: root/server/module_loader.py
diff options
context:
space:
mode:
authorJames Bowes <jbowes@redhat.com>2007-09-20 18:45:13 -0400
committerJames Bowes <jbowes@redhat.com>2007-09-20 18:45:13 -0400
commitfcf925c36f22d2eee1de1f7815915cf5ba17fbb3 (patch)
treebe7c8b77addd65a67b9b7035f9c7460e4ab0b291 /server/module_loader.py
parent3d943e4a9f128cefa56412d593c1f13ff8c15b37 (diff)
downloadfunc-fcf925c36f22d2eee1de1f7815915cf5ba17fbb3.tar.gz
func-fcf925c36f22d2eee1de1f7815915cf5ba17fbb3.tar.xz
func-fcf925c36f22d2eee1de1f7815915cf5ba17fbb3.zip
Get rid of extra / in module loading error
Diffstat (limited to 'server/module_loader.py')
-rwxr-xr-xserver/module_loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/module_loader.py b/server/module_loader.py
index a18da35..f189623 100755
--- a/server/module_loader.py
+++ b/server/module_loader.py
@@ -47,7 +47,7 @@ def load_modules(blacklist=None):
try:
blip = __import__("modules.%s" % ( modname), globals(), locals(), [modname])
if not hasattr(blip, "register_rpc"):
- errmsg = _("%(module_path)s/%(modname)s module not a proper module")
+ errmsg = _("%(module_path)s%(modname)s module not a proper module")
print errmsg % {'module_path': module_file_path, 'modname':modname}
continue
mods[modname] = blip