Slight syntax fix for @weather reply

This commit is contained in:
James Vega 2003-11-12 17:22:23 +00:00
parent 512319c632
commit 4ce677bc6e
1 changed files with 1 additions and 1 deletions

View File

@ -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: