From 9be53c7e2225e64029235b4ae9649ef605e81567 Mon Sep 17 00:00:00 2001 From: Simone Date: Sat, 2 May 2026 20:01:01 +0200 Subject: [PATCH] fix: correct remaining Windows build script f-strings --- tools/legacy/build_plugin_2600_vs2026.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/legacy/build_plugin_2600_vs2026.py b/tools/legacy/build_plugin_2600_vs2026.py index ab31493..4c5128a 100644 --- a/tools/legacy/build_plugin_2600_vs2026.py +++ b/tools/legacy/build_plugin_2600_vs2026.py @@ -943,14 +943,14 @@ Examples: print(f" - {config.name}") # Show timing summary - print(f"\n{Colors.BOLD}{Colors.BRIGHT_CYAN}{"-"*50}{Colors.RESET}") + print(f"\n{Colors.BOLD}{Colors.BRIGHT_CYAN}{'-'*50}{Colors.RESET}") print(f"{Colors.BOLD}{Colors.BRIGHT_CYAN}Build Summary:{Colors.RESET}") for config, success, build_time, file_size, dest_path in build_results: status = "OK" if success else "FAIL" row_color = Colors.BRIGHT_GREEN if success else Colors.RED size_str = f"{file_size:,} bytes" if file_size > 0 else "N/A" print(f" {row_color}{status}{Colors.RESET} {config.name:15s} - {format_time(build_time):8s} - {size_str}") - print(f"{Colors.BOLD}{Colors.BRIGHT_CYAN}{"-"*50}{Colors.RESET}") + print(f"{Colors.BOLD}{Colors.BRIGHT_CYAN}{'-'*50}{Colors.RESET}") print(f"Total time: {Colors.BRIGHT_WHITE}{format_time(total_time)}{Colors.RESET}") print()