diff options
| author | Rapptz <[email protected]> | 2019-03-16 07:33:12 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-16 07:33:12 -0400 |
| commit | 7a5102ece9e4b9fb3d7f2ee69b25c93dbb80ef10 (patch) | |
| tree | a4dec06678415716f0d1b3d4b092ee709e5aca26 /discord/ext/commands/help.py | |
| parent | Update URL in embed badge. (diff) | |
| download | discord.py-7a5102ece9e4b9fb3d7f2ee69b25c93dbb80ef10.tar.xz discord.py-7a5102ece9e4b9fb3d7f2ee69b25c93dbb80ef10.zip | |
[commands] Return result of send_group_help and send_command_help
Diffstat (limited to 'discord/ext/commands/help.py')
| -rw-r--r-- | discord/ext/commands/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 027cac91..1898be4e 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -754,9 +754,9 @@ class HelpCommand: cmd = found if isinstance(cmd, Group): - await self.send_group_help(cmd) + return await self.send_group_help(cmd) else: - await self.send_command_help(cmd) + return await self.send_command_help(cmd) class DefaultHelpCommand(HelpCommand): """The implementation of the default help command. |