catch BaseException instead of Exception

This commit is contained in:
Erica Portnoy 2020-04-09 11:57:20 -07:00
parent 42530c686c
commit 0d4aa05f54

View file

@ -437,7 +437,7 @@ def main():
else:
print('Testing master of %s'%cl_args.repo)
local_git_clone(local_cxn, cl_args.repo)
except Exception:
except BaseException:
print("FAIL: trouble with git repo")
traceback.print_exc()
exit()