diff options
| -rw-r--r-- | bot/exts/moderation/infraction/_utils.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/moderation/infraction/_utils.py b/bot/exts/moderation/infraction/_utils.py index bff5fcf4c..d0dc3f0a1 100644 --- a/bot/exts/moderation/infraction/_utils.py +++ b/bot/exts/moderation/infraction/_utils.py @@ -155,7 +155,7 @@ async def notify_infraction(      log.trace(f"Sending {user} a DM about their {infr_type} infraction.")      text = INFRACTION_DESCRIPTION_TEMPLATE.format( -        type=infr_type.capitalize(), +        type=infr_type.title(),          expires=expires_at or "N/A",          reason=reason or "No reason provided."      ) | 
