diff options
author | Luke Macken <lmacken@redhat.com> | 2008-01-14 16:32:46 -0500 |
---|---|---|
committer | Luke Macken <lmacken@redhat.com> | 2008-01-14 16:32:46 -0500 |
commit | 74e9bf9f3319da3c78e2718a8122e5edf8879638 (patch) | |
tree | b9ab9c768716c31c7d4b2245bb299092483d4704 /func/minion | |
parent | eba6728cafe7abe1620705168a82697f5dea3add (diff) | |
download | func-74e9bf9f3319da3c78e2718a8122e5edf8879638.tar.gz func-74e9bf9f3319da3c78e2718a8122e5edf8879638.tar.xz func-74e9bf9f3319da3c78e2718a8122e5edf8879638.zip |
Slay a couple of tab characters
Diffstat (limited to 'func/minion')
-rwxr-xr-x | func/minion/module_loader.py | 2 |
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 |