Skip to content

Commit

Permalink
checkout: improve output of job status message
Browse files Browse the repository at this point in the history
Add colon punctuation to separate items better.

Signed-off-by: Gustavo Padovan <[email protected]>
  • Loading branch information
padovan committed Jan 16, 2025
1 parent 9e07248 commit b2bab84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kcidev/subcommands/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def watch_jobs(baseurl, token, treeid, jobfilter, test):
sys.exit(2)
nodeid = node.get("id")
click.secho(
f"Node {nodeid} job {node['name']} State {node['state']} Result {node['result']}",
f"Node: {nodeid} job: {node['name']} State: {node['state']} Result: {node['result']}",
fg=color,
)
if len(joblist) == 0 and inprogress == 0:
Expand Down

0 comments on commit b2bab84

Please sign in to comment.