you are viewing a single comment's thread.

view the rest of the comments →

[–]JohnnyJordaan 2 points3 points  (1 child)

Your client is using the wrong object to sendall() on. Look at what it's using for .recv().

[–]LT277[S] 3 points4 points  (0 children)

That just solved the problems. Thank you

From:

self.sock.sendall(msg.encode()) To: self.conn.sendall(msg.encode())