diff --git a/src/hub.py b/src/hub.py index 7f7aec1..7d5ac4f 100644 --- a/src/hub.py +++ b/src/hub.py @@ -69,7 +69,7 @@ def timer_stop(msg): now = time.time() name = msg['from'] + msg['id'] if name in timers: - with open('time_differences', 'w') as f: + with open('time_differences', 'a') as f: f.write(f'{msg["from"]},{now - timers[name]}')