diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 11:26:11 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 11:26:11 +0300 |
commit | 73f3bbe836fff38b9922b9ec535045253f7753ac (patch) | |
tree | 64f432d185a2207dcec2de704b0678959d853be7 | |
parent | project.utils: fix the retry decorator (diff) | |
download | cmake-common-73f3bbe836fff38b9922b9ec535045253f7753ac.tar.gz cmake-common-73f3bbe836fff38b9922b9ec535045253f7753ac.zip |
project.utils: don't print fatal exception twice
-rw-r--r-- | project/utils.py | 2 | ||||
-rwxr-xr-x | tools/project-clang-format.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/project/utils.py b/project/utils.py index 06fff27..711db97 100644 --- a/project/utils.py +++ b/project/utils.py @@ -34,7 +34,7 @@ def setup_logging(): yield except Exception as e: logging.exception(e) - raise + sys.exit(1) @contextmanager diff --git a/tools/project-clang-format.py b/tools/project-clang-format.py index c8fde49..08d5987 100755 --- a/tools/project-clang-format.py +++ b/tools/project-clang-format.py @@ -31,7 +31,7 @@ def setup_logging(): yield except Exception as e: logging.exception(e) - raise + sys.exit(1) @contextmanager |