From d1626f6263d40acca8a80257ba085107c6c8633a Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Sat, 14 Sep 2019 17:00:28 -0700 Subject: Actually fix cog error handler check when command is None --- bot/cogs/error_handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/cogs/error_handler.py b/bot/cogs/error_handler.py index 994950c84..1f0700f28 100644 --- a/bot/cogs/error_handler.py +++ b/bot/cogs/error_handler.py @@ -43,7 +43,8 @@ class ErrorHandler: else: help_command = (self.bot.get_command("help"),) - if hasattr(command, "on_error") or hasattr(ctx.cog, f"_{command.cog_name}__error"): + cog_has_handler = command and hasattr(ctx.cog, f"_{command.cog_name}__error") + if hasattr(command, "on_error") or cog_has_handler: log.debug(f"Command {command} has a local error handler; ignoring.") return -- cgit v1.2.3