From a445bd84150585b4ad85c0c1ccadbee2022af196 Mon Sep 17 00:00:00 2001 From: Vexed01 Date: Thu, 9 Jul 2020 20:40:38 +0100 Subject: [PATCH] make mute and unmute have the same fail string --- redbot/cogs/mod/mutes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/mod/mutes.py b/redbot/cogs/mod/mutes.py index db76a0e5b..ed6a872c9 100644 --- a/redbot/cogs/mod/mutes.py +++ b/redbot/cogs/mod/mutes.py @@ -208,7 +208,7 @@ class MuteMixin(MixinMeta): _("Muted {user} in channel {channel.name}").format(user=user, channel=channel) ) else: - await ctx.send(issue) + await ctx.send(_("Mute failed. Reason: {}").format(issue)) @mute.command(name="channel") @commands.guild_only()