summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
Diffstat (limited to 'func')
-rwxr-xr-xfunc/minion/module_loader.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/func/minion/module_loader.py b/func/minion/module_loader.py
index 1339359..76eed43 100755
--- a/func/minion/module_loader.py
+++ b/func/minion/module_loader.py
@@ -90,7 +90,11 @@ def load_modules(blacklist=None):
errmsg = _("Could not load %s module: %s")
print errmsg % (mod_imp_name, e)
bad_mods[mod_imp_name] = True
-
+ continue
+ except:
+ errmsg = _("Could not load %s module")
+ print errmsg % (mod_imp_name)
+ bad_mods[mod_imp_name] = True
continue
return mods