From 3885dd0ac9cb9a7a7ada0abaf2aeeee19fe1c0f3 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Thu, 7 Feb 2013 23:26:10 +1300 Subject: [PATCH] Update plugins/weather.py --- plugins/weather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/weather.py b/plugins/weather.py index b235e3b..dcd8fd4 100755 --- a/plugins/weather.py +++ b/plugins/weather.py @@ -123,11 +123,11 @@ def weather(inp, nick="", reply=None, db=None, notice=None): reply("\x02{place}\x02 - \x02Current:\x02 {conditions}, {temp_f}F/{temp_c}C, Humidity: {humidity}%, " \ "Wind: {wind_kph}KPH/{wind_mph}MPH {wind_text}, \x02Today:\x02 {forecast}, " \ - "High: {high_f}F/{high_c}C, Low: {low_f}F/{low_c}C." \ + "High: {high_f}F/{high_c}C, Low: {low_f}F/{low_c}C. " \ "\x02Tomorrow:\x02 {_forecast}, High: {_high_f}F" \ "/{_high_c}C, Low: {_low_f}F/{_low_c}C.".format(**weather_data)) if location and not dontsave: db.execute("insert or replace into weather(nick, loc) values (?,?)", (nick.lower(), location)) - db.commit() \ No newline at end of file + db.commit()