From aae4370868b034f9bf26cecfaa631deed13f7c7c Mon Sep 17 00:00:00 2001 From: Seaswimmer Date: Sat, 6 Jul 2024 13:10:47 -0400 Subject: [PATCH] misc(aurora): fixed an incorrect string --- aurora/models/moderation_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/models/moderation_types.py b/aurora/models/moderation_types.py index c895ff0..f214a39 100644 --- a/aurora/models/moderation_types.py +++ b/aurora/models/moderation_types.py @@ -285,7 +285,7 @@ class Softban(Type): pass await ctx.guild.ban(target, reason=f"{str.title(cls.verb)} by {ctx.author.id} for: {reason}", delete_message_seconds=delete_messages_seconds) - await ctx.guild.unban(target, reason=f"Softban by {ctx.author.id} for: {reason}") + await ctx.guild.unban(target, reason=f"{str.title(cls.verb)} by {ctx.author.id} for: {reason}") moderation = await Moderation.log( bot, ctx.guild.id,