summaryrefslogtreecommitdiffstats
path: root/func/minion/module_loader.py
diff options
context:
space:
mode:
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: