From c443d30d394db7b0610fa44759494b65a345748c Mon Sep 17 00:00:00 2001 From: Josiah Kiehl Date: Fri, 7 Nov 2025 14:49:28 -0800 Subject: [PATCH] Suppress stack trace for GitPushError Change-Id: Idcd1cfb41cf1cf9a3bfb252f6a8c109cbce5a5f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7132480 Reviewed-by: Gavin Mak Commit-Queue: Josiah Kiehl --- git_cl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git_cl.py b/git_cl.py index 7f61de64fe..25a2f0c95e 100755 --- a/git_cl.py +++ b/git_cl.py @@ -7534,6 +7534,8 @@ def main(argv): DieWithError(( 'App Engine is misbehaving and returned HTTP %d, again. Keep faith ' 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) + except GitPushError as e: + DieWithError(str(e)) return 0