aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-03-18 20:53:09 +0100
committerGravatar kwzrd <[email protected]>2020-03-18 20:53:09 +0100
commit50ae4ed72d447681a2209378b26ea858081f04c1 (patch)
tree89eb56aeac24a1832e09d43c97a1d0e8a24bc2f6 /bot
parentDeseasonify: extend in-line documentation (diff)
Deseasonify: join paths on newline
We're now presenting a lot more information (paths vs only filenames previously), so visually this works better.
Diffstat (limited to 'bot')
-rw-r--r--bot/branding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/branding.py b/bot/branding.py
index 6231b28a..8489af8a 100644
--- a/bot/branding.py
+++ b/bot/branding.py
@@ -41,7 +41,7 @@ class GithubFile(t.NamedTuple):
async def pretty_files(files: t.Iterable[GithubFile]) -> str:
"""Provide a human-friendly representation of `files`."""
- return ", ".join(file.path for file in files)
+ return "\n".join(file.path for file in files)
async def seconds_until_midnight() -> float: