From 37774ba0dcbd4a281f397e75c1647e2243cb9559 Mon Sep 17 00:00:00 2001 From: Christoph <923528+jurkov@users.noreply.github.com> Date: Thu, 5 Mar 2026 12:12:08 +0100 Subject: [PATCH] Fixing f-string error in tactility.py Signed-off-by: Christoph <923528+jurkov@users.noreply.github.com> --- tactility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tactility.py b/tactility.py index add3ee9..48754f5 100644 --- a/tactility.py +++ b/tactility.py @@ -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: