Skip to content

Commit 2dc437b

Browse files
committed
tcfl.ui_cli.run_fn_on_each_targetspec(): fix log message to format list
Instead of printing a raw Python list.
1 parent 86561ff commit 2dc437b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tcfl/ui_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ def run_fn_on_each_targetspec(
205205
# that we are going to do it so much, (hence the meh)
206206
targetids = tcfl.targets.discovery_agent.rts_fullid_sorted
207207
if not targetids:
208-
logger.error(f"No targets match the specification: {cli_args.target}")
208+
logger.error(f"No targets match the specification (disabled?):"
209+
f" {''.join(cli_args.target)}")
209210
return 1
210211
if only_one and len(targetids) > 1:
211212
logger.error(

0 commit comments

Comments
 (0)