From c888717eb893aadc17b020b42da8041ebb43ef99 Mon Sep 17 00:00:00 2001 From: Stefan Hacker Date: Sat, 16 Apr 2011 05:25:59 +0200 Subject: [PATCH] Fix misleading error message --- mumo_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mumo_manager.py b/mumo_manager.py index 35d3e7b..61b2ac1 100644 --- a/mumo_manager.py +++ b/mumo_manager.py @@ -398,7 +398,7 @@ class MumoManager(Worker): if not names: # If no names are given load all modules that have a configuration in the cfg_dir if not os.path.isdir(self.cfg.modules.cfg_dir): - msg = "Module directory '%s' not found" % self.cfg.modules.mod_dir + msg = "Module configuration directory '%s' not found" % self.cfg.modules.cfg_dir self.log().error(msg) raise FailedLoadModuleImportException(msg)