diff --git a/captcha/commands.py b/captcha/commands.py index 8d08dde7..54783d57 100644 --- a/captcha/commands.py +++ b/captcha/commands.py @@ -142,7 +142,7 @@ async def _after( """ if message is None: await self.config.guild(ctx.guild).message_after_captcha.clear() # type: ignore - await ctx.send(f"Cleared the after captcha message.") + await ctx.send("Cleared the after captcha message.") return await self.config.guild(ctx.guild).message_after_captcha.set(message) # type: ignore await ctx.send(f"Changed the after captcha message:\n{box(str(message), lang='json')}")