Skip to content

Commit

Permalink
Reraise the importerror
Browse files Browse the repository at this point in the history
  • Loading branch information
stdweird committed Oct 12, 2015
1 parent 6d8595a commit d2c8bab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/vsc/install/shared_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ def reload_vsc_modules(self):
try:
__import__(name)
except ImportError:
log.error('Failed to reload/import %s (sys.path %s). Continuing, fingers crossed.' % (name, sys.path))
log.error('Failed to reload/import %s (sys.path %s).', name, sys.path)
raise

def force_xmlrunner(self):
"""
Expand Down

0 comments on commit d2c8bab

Please sign in to comment.