commit | 0c294324ae936d186db3b4e10b5e43c3b985cb72 | [log] [tgz] |
---|---|---|
author | Florian Weikert <fwe@google.com> | Tue Feb 06 13:40:16 2024 +0100 |
committer | GitHub <noreply@github.com> | Tue Feb 06 13:40:16 2024 +0100 |
tree | 7ea473f28685809e1755d966d23761ac2172439d | |
parent | 051b05f8387b9692c4eec3808ada3286d1d6db20 [diff] [blame] |
Fix list format (#1872)
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index 4827b82..bcc28cd 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py
@@ -3995,7 +3995,7 @@ # 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}"