From cc3b6bdd727f21b36c8704964003c2916386bd57 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 16 Mar 2019 09:37:47 -0400 Subject: [PATCH] [commands] Rename it to Context.send_help for consistency. --- discord/ext/commands/context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index b43c8c0b7..be88ae762 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -223,8 +223,8 @@ class Context(discord.abc.Messageable): g = self.guild return g.voice_client if g else None - async def show_help(self, *args): - """show_help(entity=) + async def send_help(self, *args): + """send_help(entity=) |coro|