From 99cd93ae8f0ddea4b8cf396c0b17fc27ef61350d Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 12 Sep 2012 00:36:18 +1200 Subject: [PATCH] placeholder for more work tomorrow --- plugins/weather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/weather.py b/plugins/weather.py index a996161..f9bfc3a 100755 --- a/plugins/weather.py +++ b/plugins/weather.py @@ -102,8 +102,8 @@ def weather(inp, nick="", reply=None, db=None, notice=None): except KeyError: return "Could not get weather for that location." - reply("Current Conditions for \x02{}\x02 - {}, {}F/{}C, {}%, " \ - "Wind: {}KPH/{}MPH {}.".format(d['location']['city'], \ + reply("\x02{}\x02 - \x02Current Conditions:\x02 {}, {}F/{}C, {}%, " \ + "Wind: {}KPH/{}MPH {}, \x02Todays Forecast:\x02 N/A".format(d['location']['city'], \ d['item']['condition']['text'], d['item']['condition']['temp'], \ d['item']['condition']['temp_c'], d['atmosphere']['humidity'], \ d['wind']['speed_kph'], d['wind']['speed'], d['wind']['text']))