Browse Source

Added TimeoutError handling for Windows systems.

pull/2/head
Richard Neumann 4 years ago
parent
commit
305fc8f34a
  1. 1
      rcon/rconclt.py
  2. 1
      rcon/rconshell.py

1
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)
)

1
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')

Loading…
Cancel
Save