diff options
| -rw-r--r-- | bot/cogs/moderation/utils.py | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/bot/cogs/moderation/utils.py b/bot/cogs/moderation/utils.py index cbef3420a..8b36210be 100644 --- a/bot/cogs/moderation/utils.py +++ b/bot/cogs/moderation/utils.py @@ -154,12 +154,10 @@ async def notify_infraction(      """DM a user about their new infraction and return True if the DM is successful."""      log.trace(f"Sending {user} a DM about their {infr_type} infraction.") -    text = textwrap.dedent( -        INFRACTION_DESCRIPTION_TEMPLATE.format( -            type=infr_type.capitalize(), -            expires=expires_at or "N/A", -            reason=reason or "No reason provided." -        ) +    text = INFRACTION_DESCRIPTION_TEMPLATE.format( +        type=infr_type.capitalize(), +        expires=expires_at or "N/A", +        reason=reason or "No reason provided."      )      embed = discord.Embed( | 
