From f0a4c1c252257d66db28e2fd58df901c84e09f7e Mon Sep 17 00:00:00 2001 From: Flame442 <34169552+Flame442@users.noreply.github.com> Date: Thu, 11 Jun 2020 12:46:30 -0400 Subject: [PATCH] [Core Commands] Fix `[p]set custominfo` error (#3923) --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 93aff9a22..0c03fe01a 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1449,7 +1449,7 @@ class Core(commands.Cog, CoreLogic): await ctx.send(_("The custom text has been set.")) await ctx.invoke(self.info) else: - await ctx.bot.send(_("Characters must be fewer than 1024.")) + await ctx.send(_("Text must be fewer than 1024 characters long.")) @_set.command() @checks.is_owner()