Skip to content

Commit c75a926

Browse files
authored
Fixing f-string error in tactility.py (#29)
1 parent a75279c commit c75a926

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tactility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def build_consecutively(version, platform, skip_build):
426426
shell_needed = sys.platform == "win32"
427427
build_command = ["idf.py", "-B", cmake_path, "elf"]
428428
if verbose:
429-
print(f"Running command: {" ".join(build_command)}")
429+
print(f"Running command: {' '.join(build_command)}")
430430
with subprocess.Popen(build_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=shell_needed) as process:
431431
build_output = wait_for_process(process)
432432
if process.returncode == 0:

0 commit comments

Comments
 (0)