aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-03-16 09:37:47 -0400
committerRapptz <[email protected]>2019-03-16 09:37:47 -0400
commitcc3b6bdd727f21b36c8704964003c2916386bd57 (patch)
treea0ee8631d029a51fe0a862b167d458f9787f6246
parent[commands] Add Context.show_help helper to use the HelpCommand set. (diff)
downloaddiscord.py-cc3b6bdd727f21b36c8704964003c2916386bd57.tar.xz
discord.py-cc3b6bdd727f21b36c8704964003c2916386bd57.zip
[commands] Rename it to Context.send_help for consistency.
-rw-r--r--discord/ext/commands/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index b43c8c0b..be88ae76 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=<bot>)
+ async def send_help(self, *args):
+ """send_help(entity=<bot>)
|coro|