Fixing f-string error in tactility.py (#29)

This commit is contained in:
Christoph
2026-03-05 23:29:56 +01:00
committed by GitHub
parent a75279c96c
commit c75a926c8b
+1 -1
View File
@@ -426,7 +426,7 @@ def build_consecutively(version, platform, skip_build):
shell_needed = sys.platform == "win32"
build_command = ["idf.py", "-B", cmake_path, "elf"]
if verbose:
print(f"Running command: {" ".join(build_command)}")
print(f"Running command: {' '.join(build_command)}")
with subprocess.Popen(build_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=shell_needed) as process:
build_output = wait_for_process(process)
if process.returncode == 0: