From 4ce677bc6eaa18dd264ac268d2a5c835bcc409ae Mon Sep 17 00:00:00 2001 From: James Vega Date: Wed, 12 Nov 2003 17:22:23 +0000 Subject: [PATCH] Slight syntax fix for @weather reply --- plugins/Http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Http.py b/plugins/Http.py index e189a9221..66927ee2b 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -216,7 +216,7 @@ class Http(callbacks.Privmsg): if temp and conds and city and state: s = 'The current temperature in %s, %s is %s. ' \ - 'Conditions are %s.' % \ + 'Conditions: %s.' % \ (city.strip(), state.strip(), temp, conds) irc.reply(msg, s) else: