summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--po/messages.pot4
-rwxr-xr-xserver/module_loader.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/po/messages.pot b/po/messages.pot
index 6515620..d5c1089 100644
--- a/po/messages.pot
+++ b/po/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: func 0.11-2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-20 18:36-0400\n"
+"POT-Creation-Date: 2007-09-20 18:42-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,5 +18,5 @@ msgstr ""
#: server/module_loader.py:50
#, python-format
-msgid "%(module_path)s/%(modname)s module not a proper module"
+msgid "%(module_path)s%(modname)s module not a proper module"
msgstr ""
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