Skip to content

Commit 08bd1ab

Browse files
committed
[CI] Fix exception syntax
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 3a482e7 commit 08bd1ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: CI/build/arduino-cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ def find_board():
468468
else:
469469
raise subprocess.CalledProcessError(1, "No fqbn")
470470
except subprocess.CalledProcessError as e:
471-
print("No fqbn detail found for " + e.cmd + "!")
471+
print("No fqbn detail found for:\"" + " ".join(e.cmd) + "\"!")
472472
if board_found:
473473
board_fqbn = collections.OrderedDict(sorted(board_found.items()))
474474
else:

0 commit comments

Comments
 (0)