Possible fix for Python multithread bug #126

This commit is contained in:
Joseph Henry
2021-05-30 19:36:19 -07:00
parent f566f7f4f7
commit 3ea146fa5b
2 changed files with 44 additions and 24 deletions

View File

@@ -126,7 +126,7 @@ def main():
try:
print("connecting...")
client.connect((remote_ip, remote_port))
data = "Hello, roots!"
data = "Hello, network!"
print("send: ", data)
sent_bytes = client.send(data)
print("sent: " + str(sent_bytes) + " byte(s)")