From 2ef4689004cc5c85638d1de4372d9de5a3669d40 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Mon, 22 Feb 2021 15:25:48 -0500 Subject: [PATCH] restore print statement when waiting --- irctest/client_mock.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/irctest/client_mock.py b/irctest/client_mock.py index b2f76bc..6eb22bf 100644 --- a/irctest/client_mock.py +++ b/irctest/client_mock.py @@ -49,6 +49,8 @@ class ClientMock: if not assert_get_one and not synchronize and data == b"": # Received nothing return [] + if self.show_io: + print("{:.3f} {}: waiting…".format(time.time(), self.name)) continue except ConnectionResetError: raise ConnectionClosed()