From a1ca2c421c4f2f05e83372e4dac0b3826be66d16 Mon Sep 17 00:00:00 2001 From: winek Date: Sat, 9 Jul 2016 00:30:32 +0200 Subject: [PATCH] Correct sio.emit() call in readme --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):