From 0645044194e02b0fd3b5aa295fc13bde42018c7c Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 18 Mar 2013 18:28:55 -0400 Subject: [PATCH] Bug fix in python chat impl --- chat-threads.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chat-threads.py b/chat-threads.py index fcbde09..d9fe811 100644 --- a/chat-threads.py +++ b/chat-threads.py @@ -29,6 +29,7 @@ class ConnectionHandler(StreamRequestHandler): self.announce('you are %s' % (self.connection_id,)) with active_connection_mutex: for c in active_connections: + self.announce('%s arrived' % (c.connection_id,)) c.announce('%s arrived' % (self.connection_id,)) active_connections.add(self)