From af9478922e11035df9e460a9d21fa57d4ea3562a Mon Sep 17 00:00:00 2001 From: Michael H Date: Tue, 14 Aug 2018 13:05:18 -0400 Subject: [PATCH] Correct errormsg when using discord.ext.commands (#2021) resolves #2020 --- redbot/core/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/bot.py b/redbot/core/bot.py index 9bb343606..bad45367e 100644 --- a/redbot/core/bot.py +++ b/redbot/core/bot.py @@ -300,7 +300,7 @@ class RedBase(BotBase, RPCMixin): raise RuntimeError( f"The {cog.__class__.__name__} cog in the {cog.__module__} package," " is not using Red's command module, and cannot be added. " - "If this is your cog, please use from `redbot.core import commands`" + "If this is your cog, please use `from redbot.core import commands`" "in place of `from discord.ext import commands`. For more details on " "this requirement, see this page: " "http://red-discordbot.readthedocs.io/en/v3-develop/framework_commands.html"