From d48609e4d08e64e75455b103726d93b834dbf39a Mon Sep 17 00:00:00 2001 From: Michael Oliveira <34169552+Flame442@users.noreply.github.com> Date: Sun, 8 Dec 2024 13:27:26 -0500 Subject: [PATCH] Consistent formatting --- redbot/cogs/warnings/warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/warnings/warnings.py b/redbot/cogs/warnings/warnings.py index 9c43398ad6b..ba22417a28d 100644 --- a/redbot/cogs/warnings/warnings.py +++ b/redbot/cogs/warnings/warnings.py @@ -392,7 +392,7 @@ async def warn( member = user elif isinstance(user, int): if not ctx.channel.permissions_for(ctx.guild.me).ban_members: - await ctx.send(_("User {user} is not in the server.").format(user=user)) + await ctx.send(_("User `{user}` is not in the server.").format(user=user)) return user_obj = self.bot.get_user(user) or discord.Object(id=user)