Skip to content

Commit bfc3561

Browse files
seifthemanFlame442
andauthored
Fix formatting of [p]names. (#6538)
Co-authored-by: Michael Oliveira <34169552+Flame442@users.noreply.github.com>
1 parent 8d8918b commit bfc3561

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

redbot/cogs/mod/names.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,9 @@ async def names(self, ctx: commands.Context, *, member: discord.Member):
309309
usernames, display_names, nicks = await self.get_names(member)
310310
parts = []
311311
for header, names in (
312-
(_("Past 20 usernames:"), usernames),
313-
(_("Past 20 global display names:"), display_names),
314-
(_("Past 20 server nicknames:"), nicks),
312+
(_("Past 20 usernames: "), usernames),
313+
(_("Past 20 global display names: "), display_names),
314+
(_("Past 20 server nicknames: "), nicks),
315315
):
316316
if names:
317317
parts.append(bold(header) + ", ".join(names))

0 commit comments

Comments
 (0)