fix lil syntax error (#10735)

This commit is contained in:
Will Greenberg
2026-07-15 14:22:50 -07:00
committed by GitHub
parent dfa731d58f
commit c777edbf77
+1 -1
View File
@@ -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)