From 4ed371b71410ccdfd094b051b326bf3b8abc6bb9 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Dec 2020 13:44:35 +0100 Subject: [PATCH] Fixed error handler. --- rcon/errorhandler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcon/errorhandler.py b/rcon/errorhandler.py index 7a8f863..63a2bdb 100644 --- a/rcon/errorhandler.py +++ b/rcon/errorhandler.py @@ -24,9 +24,9 @@ class ErrorHandler: def __enter__(self): return self - def __exit__(self, typ, *_): + def __exit__(self, typ, value, _): """Checks for connection errors and exits respectively.""" for error, message, returncode in self.errors: - if isinstance(typ, error): + if typ is error or isinstance(value, error): self.logger.error(message) exit(returncode)