diff options
-rw-r--r-- | bot/cogs/error_handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/error_handler.py b/bot/cogs/error_handler.py index 59b6c0573..994950c84 100644 --- a/bot/cogs/error_handler.py +++ b/bot/cogs/error_handler.py @@ -43,7 +43,7 @@ class ErrorHandler: else: help_command = (self.bot.get_command("help"),) - if hasattr(command, "on_error") or hasattr(command.instance, f"_{command.cog_name}__error"): + if hasattr(command, "on_error") or hasattr(ctx.cog, f"_{command.cog_name}__error"): log.debug(f"Command {command} has a local error handler; ignoring.") return |