From 305fc8f34aa156674fbcd16de8b954748bc1e62e Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Dec 2020 22:23:36 +0100 Subject: [PATCH] Added TimeoutError handling for Windows systems. --- rcon/rconclt.py | 1 + rcon/rconshell.py | 1 + 2 files changed, 2 insertions(+) diff --git a/rcon/rconclt.py b/rcon/rconclt.py index fe98e36..dac4190 100644 --- a/rcon/rconclt.py +++ b/rcon/rconclt.py @@ -21,6 +21,7 @@ __all__ = ['get_credentials', 'main'] ERRORS = ( (ConnectionRefusedError, 'Connection refused.', 3), (timeout, 'Connection timeout.', 4), + (TimeoutError, 'Connection timeout.', 4), (RequestIdMismatch, 'Unexpected request ID mismatch.', 5), (WrongPassword, 'Wrong password.', 6) ) diff --git a/rcon/rconshell.py b/rcon/rconshell.py index bf107ca..9296b14 100644 --- a/rcon/rconshell.py +++ b/rcon/rconshell.py @@ -19,6 +19,7 @@ __all__ = ['get_args', 'main'] ERRORS = ( (ConnectionRefusedError, 'Connection refused.', 3), (timeout, 'Connection timeout.', 4), + (TimeoutError, 'Connection timeout.', 4), (RequestIdMismatch, 'Unexpected request ID mismatch.', 5) ) LOGGER = getLogger('rconshell')