From a00ad4189f2ad67769969c13f3781e8fd3691eb4 Mon Sep 17 00:00:00 2001 From: Paul Warren Date: Mon, 31 Jan 2022 17:03:13 +1100 Subject: [PATCH] More fixes for UTC --- bom_rrd2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bom_rrd2.py b/bom_rrd2.py index 8039a08..87cb95e 100755 --- a/bom_rrd2.py +++ b/bom_rrd2.py @@ -69,8 +69,8 @@ weather = {} if wdays_dict[0]['temp_min'] is None: night = 1 weather['today'] = wdays_dict[0] - weather['tomorrow'] = wdays_dict[2] - weather['day_after'] = wdays_dict[3] + weather['tomorrow'] = wdays_dict[1] + weather['day_after'] = wdays_dict[2] else: night = 0 weather['today'] = wdays_dict[0]