diff --git a/client.py b/client.py index 6e56d9504f9ee845a052098a92748d0b8632b971..236e8ac987b3db496b90992ef66818452958564c 100644 --- a/client.py +++ b/client.py @@ -31,7 +31,7 @@ while True: amount_received += len(data) print ('received "%s"' % data) timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") - f = open("/tmp/ping-pog.log", "a") + f = open("/tmp/ping-pong.log", "a") f.write(timestamp +' : ' + data + '\n') f.close() time.sleep(1)