~xenrox/status-display

34576edd926e4fdc36eafd84f7ffb556a7d11e58 — Thorben Günther 3 years ago e518c2b
Fix bug in weather module
1 files changed, 1 insertions(+), 1 deletions(-)

M modules/weather.py
M modules/weather.py => modules/weather.py +1 -1
@@ 92,7 92,7 @@ def get_weather(token, lat, lon):
    dt = data_current["dt"]
    sr = data_current["sunrise"]
    ss = data_current["sunset"]
    current.append(get_icon(data_current["current"]["weather"][0]["id"], dt, sr, ss))
    current.append(get_icon(data_current["weather"][0]["id"], dt, sr, ss))
    current.append(format_temp(data_current["temp"]))

    for i in range(1, 4):