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]