Slightly changed the formatting of the output.

This commit is contained in:
Jeremy Fincher 2003-03-13 07:34:11 +00:00
parent 5ec9df1a2d
commit d9b17f5a45
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class Http(callbacks.Privmsg):
html = urllib2.urlopen(url).read()
city, state = self._cityregex.search(html).groups()
temp = self._tempregex.search(html).group(1)
conds = self._condregex.search(html).group(1)
conds = self._condregex.search(html).group(1).strip()
irc.reply(msg, 'The current temperature in %s, %s is %dF with %s\
conditions' % (city, state, int(temp), conds))
except AttributeError: