This commit is contained in:
atse 2023-08-03 14:42:11 +08:00 committed by Tse Kwok Yan
parent d66d07df81
commit e051deb507
1 changed files with 3 additions and 3 deletions

View File

@ -563,7 +563,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
@asyncSlot()
async def on_connect_btn_clicked(self):
ip, port = self.host_set_line.text(), self.port_set_spin.value()
host, port = self.host_set_line.text(), self.port_set_spin.value()
try:
if not (self.client.is_connecting() or self.client.is_connected()):
self.status_lbl.setText("Connecting...")
@ -572,7 +572,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
self.port_set_spin.setEnabled(False)
try:
await self.client.connect(host=ip, port=port, timeout=30)
await self.client.connect(host=host, port=port, timeout=30)
except StoppedConnecting:
return
await self._on_connection_changed(True)
@ -581,7 +581,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
await self.client.disconnect()
except (OSError, TimeoutError, asyncio.TimeoutError) as e: # TODO: Remove asyncio.TimeoutError in Python 3.11
logging.error(f"Failed communicating to {ip}:{port}: {e}")
logging.error(f"Failed communicating to {host}:{port}: {e}")
await self._on_connection_changed(False)
await self.client.disconnect()