From 24d6c059e1d0a42b2625df683ce254f890fef8d1 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 12 Sep 2012 07:35:57 +1200 Subject: [PATCH] Double fail! --- plugins/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/weather.py b/plugins/weather.py index bfe3522..9cce148 100755 --- a/plugins/weather.py +++ b/plugins/weather.py @@ -61,7 +61,7 @@ def get_weather(location): i['high_c'] = \ int(round(((float(i['high']) - 32) / 9) * 5)) i['low_c'] = \ - int(round(((float(i['high']) - 32) / 9) * 5)) + int(round(((float(i['low']) - 32) / 9) * 5)) return data