summaryrefslogtreecommitdiffstats
path: root/func/minion/module_loader.py
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2008-01-28 20:21:22 -0500
committerJohn Eckersberg <jeckersb@redhat.com>2008-01-28 20:21:22 -0500
commit60e28e9577353c1ee2dd3f9901bfed5fbfcfb3c5 (patch)
tree0e0819b0c59a523e3af8c81d9c9a8a265c5b7169 /func/minion/module_loader.py
parent4c602438c47b2ca6317540eb59b37dfc5f354926 (diff)
downloadfunc-60e28e9577353c1ee2dd3f9901bfed5fbfcfb3c5.tar.gz
func-60e28e9577353c1ee2dd3f9901bfed5fbfcfb3c5.tar.xz
func-60e28e9577353c1ee2dd3f9901bfed5fbfcfb3c5.zip
Revert "debug info"
This reverts commit 4c602438c47b2ca6317540eb59b37dfc5f354926.
Diffstat (limited to 'func/minion/module_loader.py')
-rwxr-xr-xfunc/minion/module_loader.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/func/minion/module_loader.py b/func/minion/module_loader.py
index 05bb3bd..3068ea8 100755
--- a/func/minion/module_loader.py
+++ b/func/minion/module_loader.py
@@ -80,12 +80,11 @@ def load_modules(blacklist=None):
try:
# Auto-detect and load all FuncModules
- logger.debug("Trying to load modues.%s" % mod_imp_name)
blip = __import__("modules.%s" % ( mod_imp_name), globals(), locals(), [mod_imp_name])
for obj in dir(blip):
attr = getattr(blip, obj)
if isclass(attr) and issubclass(attr, func_module.FuncModule):
- logger.debug("Loading %s module flibby" % attr)
+ logger.debug("Loading %s module" % attr)
mods[mod_imp_name] = attr()
except ImportError, e: