From a2206083c8fb40d98500db776017970b0e4dbc6e Mon Sep 17 00:00:00 2001 From: Artyom Lebedev Date: Sun, 14 Sep 2025 10:59:27 +0300 Subject: [PATCH] fix(tools): Fix warning message from idf_tools.py Closes https://github.com/espressif/esp-idf/pull/17586 --- tools/idf_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index f6dc6ec1e1..e1d8d2c791 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -1941,7 +1941,7 @@ def parse_targets_arg(targets_str: str) -> List[str]: if invalid_targets: warn( f'Targets: "{", ".join(invalid_targets)}" are not supported. ' - 'Only allowed options are: {", ".join(targets_from_tools_json)}.' + f'Only allowed options are: {", ".join(targets_from_tools_json)}.' ) raise SystemExit(1) return targets