[V3 reports] Display user discrim (#1913)

* [V3 reports] Display user discrim

* Update reports.py

minor change for clarity

* format pass
This commit is contained in:
Michael H 2018-07-11 21:38:07 -04:00 committed by Kowlin
parent 77566a887a
commit 8e6ab9aa35

View File

@ -105,7 +105,7 @@ class Reports:
*, *,
mod: bool = False, mod: bool = False,
permissions: Union[discord.Permissions, dict] = None, permissions: Union[discord.Permissions, dict] = None,
prompt: str = "" prompt: str = "",
): ):
""" """
discovers which of shared guilds between the bot discovers which of shared guilds between the bot
@ -175,7 +175,10 @@ class Reports:
if await self.bot.embed_requested(channel, author): if await self.bot.embed_requested(channel, author):
em = discord.Embed(description=report) em = discord.Embed(description=report)
em.set_author( em.set_author(
name=_("Report from {0.display_name}").format(author), icon_url=author.avatar_url name=_("Report from {author}{maybe_nick}").format(
author=author, maybe_nick=(f" ({author.nick})" if author.nick else "")
),
icon_url=author.avatar_url,
) )
em.set_footer(text=_("Report #{}").format(ticket_number)) em.set_footer(text=_("Report #{}").format(ticket_number))
send_content = None send_content = None