From 3a8bebaea929adbaac5460039c520e0ab2a217cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Midb=C3=B8e?= Date: Sun, 12 Aug 2018 17:30:27 +0200 Subject: [PATCH] Change text of response message. --- deluge_socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge_socket.py b/deluge_socket.py index e45110d..1f1549f 100644 --- a/deluge_socket.py +++ b/deluge_socket.py @@ -7,7 +7,7 @@ async def hello(websocket, path): name = await websocket.recv() print(f"< {name}") - greeting = f"Hello {name}, welcome to the world websockets!" + greeting = f"Hello {name}, welcome to the world of websockets!" await websocket.send(greeting) print(f"> {greeting}")