From c777edbf778522a93f5d3375d1f5ced72639785e Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Wed, 15 Jul 2026 14:22:50 -0700 Subject: [PATCH] fix lil syntax error (#10735) --- tools/finish_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/finish_release.py b/tools/finish_release.py index afee02652..23858e412 100755 --- a/tools/finish_release.py +++ b/tools/finish_release.py @@ -200,7 +200,7 @@ def _run_silent_except_error(cmd: list[str], message: str = None) -> subprocess. try: process = subprocess.run(cmd, check=True, universal_newlines=True, capture_output=True) except subprocess.CalledProcessError as e: - print(f'Error running `{' '.join(cmd)}`') + print(f'Error running `{" ".join(cmd)}`') if message is not None: print(message) print(e.output)