Browse Source

Correct sio.emit() call in readme

pull/32/head
winek 9 years ago
committed by GitHub
parent
commit
a1ca2c421c
  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