diff --git a/rcon/errorhandler.py b/rcon/errorhandler.py index 57f6bca..592d510 100644 --- a/rcon/errorhandler.py +++ b/rcon/errorhandler.py @@ -24,7 +24,7 @@ class ErrorHandler: def __exit__(self, typ, *_): """Checks for connection errors and exits respectively.""" - for error, (message, returncode) in self.errors.items(): + for error, message, returncode in self.errors: if isinstance(typ, error): self.logger.error(message) exit(returncode)