Merge "Changing 'raise e' to 'raise' to prevent exception masking"

This commit is contained in:
Jenkins 2016-09-05 08:03:27 +00:00 committed by Gerrit Code Review
commit 787b48019f
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ def import_modules(repo_location, package_name, verbose=0):
continue
except Exception as e:
print("Impossible to import module %s" % modname)
raise e
raise
_register_runtime_opts(module, abs_path, verbose)
_run_hook(modname)