From 064c59d081d7f602109567d42798e8b276aae5c4 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Thu, 8 Feb 2024 07:48:53 +0100 Subject: [PATCH] fix 2 --- fosdem_video_progress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fosdem_video_progress.py b/fosdem_video_progress.py index 6cd05d9..93feef1 100755 --- a/fosdem_video_progress.py +++ b/fosdem_video_progress.py @@ -46,8 +46,8 @@ def main(): time, states, jobstates = get_data() assert time not in ts.data ts.data[time] = (states, jobstates) - ts.states |= states - ts.jobstates |= jobstates + ts.states |= states.keys() + ts.jobstates |= jobstates.keys() # Save the pickle # Should probably save elsewhere and do atomic rename, but whatever.