summaryrefslogtreecommitdiffstats
path: root/server/module_loader.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@redhat.com>2007-09-20 18:46:39 -0400
committerAdrian Likins <alikins@redhat.com>2007-09-20 18:46:39 -0400
commitc52285088c7b1c5744e26ac43e2faf0f1b302585 (patch)
tree82540d9c852a28eab24c473bb180233e3a5b89e5 /server/module_loader.py
parentbfc12e218fa56755aa37338c5aa36feee632ed49 (diff)
parent74d7edb0c56505eaf657565a95eb209ea09a3b8f (diff)
downloadthird_party-func-c52285088c7b1c5744e26ac43e2faf0f1b302585.tar.gz
third_party-func-c52285088c7b1c5744e26ac43e2faf0f1b302585.tar.xz
third_party-func-c52285088c7b1c5744e26ac43e2faf0f1b302585.zip
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
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