diff --git a/modules/Weather.py b/modules/Weather.py index dd8f920..d0d42d6 100644 --- a/modules/Weather.py +++ b/modules/Weather.py @@ -55,7 +55,7 @@ class Weather(Module): weatherstr = "Current weather for " + city + ": " + condition + ". " + temp_f + "°F (" + temp_c + "°C), " + wind + ", " + humidity if windchill is not "": weatherstr += ", Wind chill: " + str(round(windchill, 2)) + "°F" - windchill += "." + weatherstr += "." for city in google_weather['forecasts']: weatherstr += " " + city['day_of_week'].encode('utf-8') + ": " + city['condition'].encode('utf-8') + ". High " + city['high'].encode('utf-8') + "°F, Low " + city['low'].encode('utf-8') + "°F."