aboutsummaryrefslogtreecommitdiff
path: root/LightInstallation.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2011-01-03 22:28:28 -0500
committerGravatar rcoh <rcoh@mit.edu>2011-01-03 22:28:28 -0500
commitf5c29b39f3eef83227e3fb7c550d9b2922a19894 (patch)
treed8b1575b49762756ae1cbd152b9c5f51f3f93801 /LightInstallation.py
parentba796403d111ffc3b29620647f38bc5541840ccb (diff)
fixed a bug caused by util stuff. some new functionality, not all fully implemented.
Diffstat (limited to 'LightInstallation.py')
-rw-r--r--LightInstallation.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/LightInstallation.py b/LightInstallation.py
index 01fea1c..c74926e 100644
--- a/LightInstallation.py
+++ b/LightInstallation.py
@@ -98,7 +98,8 @@ class LightInstallation:
try:
exec('from ' + module+'.'+className + ' import *')
main_log.debug(module +'.' +className + 'imported')
- except:
+ except Exception as inst:
+ pdb.set_trace()
main_log.error('Error importing ' + module+'.'+'.className. Component not\
initialized.')
continue #TODO: verify functions as expected