Skip to content

Commit

Permalink
Merged in moses-palmer/gevent-websocket/fixup-python3 (pull request #15)
Browse files Browse the repository at this point in the history
Allow gevent-websocket to be installed with setuptools
  • Loading branch information
jgelens committed Jan 10, 2014
2 parents 0d1f7d8 + 4284893 commit 28cafd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geventwebsocket/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, *args, **kwargs):
super(WebSocketServer, self).__init__(*args, **kwargs)

def handle(self, socket, address):
print "Connected Clients: ", str(self.clients.keys())
print("Connected Clients: " + str(self.clients.keys()))

handler = self.handler_class(socket, address, self)
handler.handle()
Expand Down

0 comments on commit 28cafd3

Please sign in to comment.