From 6b4b65e585100d61190765a52082da50581d0648 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 2 Sep 2015 07:55:35 +0200 Subject: [PATCH] ipc: Clarify comment. --- qutebrowser/misc/ipc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/misc/ipc.py b/qutebrowser/misc/ipc.py index 1492c1eb0..535ef1ca9 100644 --- a/qutebrowser/misc/ipc.py +++ b/qutebrowser/misc/ipc.py @@ -191,7 +191,8 @@ class IPCServer(QObject): def on_ready_read(self): """Read json data from the client.""" if self._socket is None: - # this happened once and I don't know why + # This happens when doing a connection while another one is already + # active for some reason. log.ipc.warn("In on_ready_read with None socket!") return self._timer.start()