From 6d74514729ac78703e85891ba71118c0d9c80ab4 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 5 Apr 2021 21:08:54 -0400 Subject: [PATCH] [commands] Fix logic in Cog.has_error_handler() --- discord/ext/commands/cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/cog.py b/discord/ext/commands/cog.py index dcaa9cdcb..085bdb973 100644 --- a/discord/ext/commands/cog.py +++ b/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):