From 3aee16b5f6617d13aa30f626bed87b234ecc2570 Mon Sep 17 00:00:00 2001 From: Alex Ovsienko Date: Mon, 15 Dec 2025 09:47:10 -0800 Subject: [PATCH] Fix unintended comma in clang format exception raising. Change-Id: I56bc5a8c2a778172617ac2ce2bd7fb776a6a6964 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7259616 Auto-Submit: Alex Ovsienko Reviewed-by: Scott Lee Commit-Queue: Scott Lee --- clang_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang_format.py b/clang_format.py index e02cdfaaf2..74a760b027 100755 --- a/clang_format.py +++ b/clang_format.py @@ -74,7 +74,7 @@ def FindClangFormatScriptInChromiumTree(script_name): tools_path = gclient_paths.GetBuildtoolsPath() if not tools_path: raise NotFoundError( - 'Could not find checkout in any parent of the current path.\n', + 'Could not find checkout in any parent of the current path.\n' 'Set CHROMIUM_BUILDTOOLS_PATH to use outside of a chromium ' 'checkout.')