Fix unclosed paren

This commit is contained in:
Eli Ribble 2024-09-12 12:41:48 -07:00
parent d577928b3a
commit 7e6559e304
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def bind_socket(family, type_, proto, canonname, sockaddr):
while True:
data = conn.recv(1024)
if not data: break
conn.send(("Hey " + data.decode("UTF-8").encode("UTF-8"))
conn.send(("Hey " + data.decode("UTF-8")).encode("UTF-8"))
if __name__ == "__main__":
main()