diff options
Diffstat (limited to 'discord/ext/commands/bot.py')
| -rw-r--r-- | discord/ext/commands/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 8c17c63b..56c9c153 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -632,7 +632,7 @@ class BotBase(GroupMixin): try: yield from ctx.command.invoke(ctx) except CommandError as e: - ctx.command.dispatch_error(e, ctx) + yield from ctx.command.dispatch_error(e, ctx) else: self.dispatch('command_completion', ctx) elif ctx.invoked_with: |