diff --git a/rcon/errorhandler.py b/rcon/errorhandler.py index 63a2bdb..09bb806 100644 --- a/rcon/errorhandler.py +++ b/rcon/errorhandler.py @@ -26,7 +26,7 @@ class ErrorHandler: def __exit__(self, typ, value, _): """Checks for connection errors and exits respectively.""" - for error, message, returncode in self.errors: - if typ is error or isinstance(value, error): + for exception, message, returncode in self.errors: + if typ is exception or isinstance(value, exception): self.logger.error(message) exit(returncode)