Browse Source

Merge pull request #32 from winek/patch-1

Correct sio.emit() call in readme
pull/41/head
Miguel Grinberg 9 years ago
committed by GitHub
parent
commit
8b37152953
  1. 2
      README.rst

2
README.rst

@ -64,7 +64,7 @@ client:
@sio.on('chat message', namespace='/chat')
def message(sid, data):
print("message ", data)
sio.emit(sid, 'reply')
sio.emit('reply', room=sid)
@sio.on('disconnect', namespace='/chat')
def disconnect(sid):

Loading…
Cancel
Save