diff options
| -rw-r--r-- | bot/cogs/moderation/infractions.py | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/bot/cogs/moderation/infractions.py b/bot/cogs/moderation/infractions.py index d1e77311c..3340744b0 100644 --- a/bot/cogs/moderation/infractions.py +++ b/bot/cogs/moderation/infractions.py @@ -245,11 +245,9 @@ class Infractions(InfractionScheduler, commands.Cog):          self.mod_log.ignore(Event.member_remove, user.id) -        action = ctx.guild.ban( -            user, -            reason=textwrap.shorten(reason, width=512, placeholder=" ..."), -            delete_message_days=0 -        ) +        truncated_reason = textwrap.shorten(reason, width=512, placeholder=" ...") + +        action = ctx.guild.ban(user, reason=truncated_reason, delete_message_days=0)          await self.apply_infraction(ctx, infraction, user, action)          if infraction.get('expires_at') is not None: | 
