Browse Source

[commands] Fix cog error detection in the default global error handler.

pull/609/merge
Rapptz 8 years ago
parent
commit
e62e2c7cc6
  1. 2
      discord/ext/commands/bot.py

2
discord/ext/commands/bot.py

@ -206,7 +206,7 @@ class BotBase(GroupMixin):
cog = context.cog
if cog:
attr = '__{0.__class__.__name__}_error'.format(cog)
attr = '_{0.__class__.__name__}__error'.format(cog)
if hasattr(cog, attr):
return

Loading…
Cancel
Save