From a19dcdb6900bb4efe22b92576d7f1eb94694e296 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 6 Dec 2010 16:31:16 -0600 Subject: [PATCH] fix string concat thinko --- modules/Weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."