diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index d5df38b..ddcacdb 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -78,7 +78,7 @@ class WrappedClient(QObject, Client): async def _read_line(self): try: return await super()._read_line() - except (OSError, TimeoutError, asyncio.TimeoutError) as e: # TODO: Remove asyncio.TimeoutError in Python 3.11 + except (OSError, TimeoutError) as e: logging.error("Client connection error, disconnecting", exc_info=True) self.connection_error.emit() @@ -687,7 +687,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): else: await self.bail() - except (OSError, TimeoutError, asyncio.TimeoutError) as e: # TODO: Remove asyncio.TimeoutError in Python 3.11 + except (OSError, TimeoutError) as e: logging.error(f"Failed communicating to {host}:{port}: {e}") await self.bail()