changed the echo server URL

This commit is contained in:
liris 2011-03-02 21:21:49 +09:00
parent df632aec20
commit 8c6452006f

@ -24,7 +24,7 @@ def on_open(ws):
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("ws://localhost:5000/chat",
ws = websocket.WebSocketApp("ws://echo.websocket.org/",
on_message = on_message,
on_error = on_error,
on_close = on_close)