summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-14 16:32:46 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-14 16:32:46 -0500
commit74e9bf9f3319da3c78e2718a8122e5edf8879638 (patch)
treeb9ab9c768716c31c7d4b2245bb299092483d4704 /func
parenteba6728cafe7abe1620705168a82697f5dea3add (diff)
downloadthird_party-func-74e9bf9f3319da3c78e2718a8122e5edf8879638.tar.gz
third_party-func-74e9bf9f3319da3c78e2718a8122e5edf8879638.tar.xz
third_party-func-74e9bf9f3319da3c78e2718a8122e5edf8879638.zip
Slay a couple of tab characters
Diffstat (limited to 'func')
-rwxr-xr-xfunc/minion/module_loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/minion/module_loader.py b/func/minion/module_loader.py
index 611323d..6fb2a6b 100755
--- a/func/minion/module_loader.py
+++ b/func/minion/module_loader.py
@@ -82,7 +82,7 @@ def load_modules(blacklist=None):
try:
blip = __import__("modules.%s" % ( mod_imp_name), globals(), locals(), [mod_imp_name])
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")
logger.warning(errmsg % {'module_path': module_file_path, 'modname':mod_imp_name})
bad_mods[mod_imp_name] = True
continue