mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
catch BaseException instead of Exception
This commit is contained in:
parent
42530c686c
commit
0d4aa05f54
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue