From 50b17912c1ffde4c588491d188b7f71bcf749203 Mon Sep 17 00:00:00 2001 From: KE programmer Date: Mon, 18 May 2026 13:48:21 +0300 Subject: [PATCH] Fix typo in Ex 8.6: comma used where concatenation is expected. As confirmed by the solution provided, the send method receives a single bytes argument. --- Exercises/ex8_6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercises/ex8_6.md b/Exercises/ex8_6.md index 30ab0ba1..19716e41 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') ```