From d7c586f2e64b19ae5aa0feea150a5fc3111a96b6 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Mon, 21 Dec 2020 00:19:22 +0100 Subject: [PATCH] Fixed error in interating over error map. --- rcon/errorhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)