Skip to content
Snippets Groups Projects
Commit 663caee5 authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

Note a deficiency

parent 05c2dfb6
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment