Browse Source

Fix docstring (#449)

pull/450/head
wangjiancn 5 years ago
committed by GitHub
parent
commit
8caebfd524
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      socketio/server.py

2
socketio/server.py

@ -172,7 +172,7 @@ class Server(object):
def message_handler(sid, msg):
print('Received message: ', msg)
eio.send(sid, 'response')
socket_io.on('message', namespace='/chat', message_handler)
socket_io.on('message', namespace='/chat', handler=message_handler)
The handler function receives the ``sid`` (session ID) for the
client as first argument. The ``'connect'`` event handler receives the

Loading…
Cancel
Save