Fix typo "Mo data" → "No data"

This commit is contained in:
Juhani Krekelä 2023-03-21 00:13:26 +02:00
parent 9f5f74c456
commit 6aa6236031
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ class ServerThread(threading.Thread):
if event | select.POLLIN:
data = self.server_socket.recv(1024)
# Mo data to be read even as POLLIN triggered → connection has broken
# No data to be read even as POLLIN triggered → connection has broken
# Log it and try reconnecting
if data == b'':
self.logging_channel.send((logmessage_types.internal, internal_submessage_types.error, 'Empty read'))