diff --git a/README.rst b/README.rst index 57fdd94..5d774a4 100644 --- a/README.rst +++ b/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):