Browse Source

[commands] Fix logic in Cog.has_error_handler()

pull/6643/head
Rapptz 4 years ago
parent
commit
6d74514729
  1. 2
      discord/ext/commands/cog.py

2
discord/ext/commands/cog.py

@ -299,7 +299,7 @@ class Cog(metaclass=CogMeta):
.. versionadded:: 1.7
"""
return hasattr(self.cog_command_error.__func__, '__cog_special_method__')
return not hasattr(self.cog_command_error.__func__, '__cog_special_method__')
@_cog_special_method
def cog_unload(self):

Loading…
Cancel
Save