Skip to content

Commit

Permalink
Fix list format
Browse files Browse the repository at this point in the history
  • Loading branch information
fweikert committed Feb 6, 2024
1 parent 051b05f commit 0966ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -3995,7 +3995,7 @@ def format_shard(s):
# TODO: show log links for failing attempts > 1?
return f"- {self.label} {format_shard(shard)}"

shard_info = "".join(
shard_info = "\n".join(
f" - Shard {s.number}/{len(self.shards)}: {format_shard(s)}" for s in failing_shards
)
return f"- {self.label}\n{shard_info}"
Expand Down

0 comments on commit 0966ef6

Please sign in to comment.