diff options
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: |