From 876edf3306f3d1c739f60199bef6082e4ac96459 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Fri, 3 Jan 2014 10:48:31 -0800 Subject: [PATCH] main.py: print the output of an ImportError to help in debugging. --- catalyst/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalyst/main.py b/catalyst/main.py index 4146bcae..bba3cbab 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -227,9 +227,10 @@ def import_modules(): raise CatalystError,"Can't find " + x + ".py plugin in " + \ module_dir - except ImportError: + except ImportError as e: print "!!! catalyst: Python modules not found in "+\ module_dir + "; exiting." + print e sys.exit(1) return targetmap -- 2.26.2