From 50ae4ed72d447681a2209378b26ea858081f04c1 Mon Sep 17 00:00:00 2001 From: kwzrd Date: Wed, 18 Mar 2020 20:53:09 +0100 Subject: Deseasonify: join paths on newline We're now presenting a lot more information (paths vs only filenames previously), so visually this works better. --- bot/branding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot/branding.py') 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: -- cgit v1.2.3