From 6aa6236031bcaea4c20a13cc145d3cae499fd775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Tue, 21 Mar 2023 00:13:26 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20"Mo=20data"=20=E2=86=92=20"No=20da?= =?UTF-8?q?ta"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ircbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircbot.py b/ircbot.py index 7ec5f50..1a0e66d 100644 --- a/ircbot.py +++ b/ircbot.py @@ -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'))