Note a deficiency
authorEric S. Raymond <esr@thyrsus.com>
Sat, 30 Nov 2013 12:09:22 +0000 (07:09 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Sat, 30 Nov 2013 12:09:22 +0000 (07:09 -0500)
irkerd

diff --git a/irkerd b/irkerd
index 54b585eea15a7c16dd304f3cf923a8f1ca12a5ad..ddc008c5895bbe30651424a8c7e1bb26f59155f4 100755 (executable)
--- a/irkerd
+++ b/irkerd
@@ -136,7 +136,6 @@ class IRCClient():
                     (insocks, _o, _e) = select.select(sockets, [], [], timeout)
                     for s in insocks:
                         connmap[s.fileno()].consume()
-
                 else:
                     time.sleep(timeout)
 
@@ -871,6 +870,7 @@ if __name__ == '__main__':
         (to, privmsg) = val.split(",")
         irker.handle('{"to":"%s","privmsg":"%s"}' % (to, privmsg))
         irker.irc.spin()
+        # FIXME: This mode does not yet terminate
     else:
         try:
             tcpserver = SocketServer.TCPServer((HOST, PORT), IrkerTCPHandler)