diff --git a/Exercises/ex8_6.md b/Exercises/ex8_6.md index 30ab0ba..19716e4 100644 --- a/Exercises/ex8_6.md +++ b/Exercises/ex8_6.md @@ -185,7 +185,7 @@ async def echo_handler(client, address): data = await client.recv(1000) if not data: break - await client.send(b'GOT:', data) + await client.send(b'GOT:' + data) print('Connection closed') ```