aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Izan <[email protected]>2021-11-10 09:00:45 +0000
committerGravatar Izan <[email protected]>2021-11-10 09:00:45 +0000
commit2aad13887f049512ab8330f8aaa790086e3e6bea (patch)
tree9271d2bfddc248eb83552785daecdcc0ebf59542
parentAdd missing newline after region comment (diff)
Unify infraction embed title
Embed for `!infractions by` no longer has the author in codeblock.
-rw-r--r--bot/exts/moderation/infraction/management.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/infraction/management.py b/bot/exts/moderation/infraction/management.py
index 7314eb61d..192bb3ba9 100644
--- a/bot/exts/moderation/infraction/management.py
+++ b/bot/exts/moderation/infraction/management.py
@@ -300,7 +300,7 @@ class ModManagement(commands.Cog):
formatted_infraction_count = self.format_infraction_count(len(infraction_list))
embed = discord.Embed(
- title=f"Infractions by `{actor}` ({formatted_infraction_count} total)",
+ title=f"Infractions by {actor} ({formatted_infraction_count} total)",
colour=discord.Colour.orange()
)