diff options
author | 2020-03-18 20:53:09 +0100 | |
---|---|---|
committer | 2020-03-18 20:53:09 +0100 | |
commit | 50ae4ed72d447681a2209378b26ea858081f04c1 (patch) | |
tree | 89eb56aeac24a1832e09d43c97a1d0e8a24bc2f6 /bot | |
parent | Deseasonify: 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.py | 2 |
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: |