diff --git a/plugins/Http.py b/plugins/Http.py index 20d3bde5b..54aa119f2 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -184,9 +184,9 @@ 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).strip() - irc.reply(msg, 'The current temperature in %s, %s is %dF with %s\ - conditions' % (city, state, int(temp), conds)) + conds = self._condregex.search(html).group(1) + irc.reply(msg, 'The current temperature in %s, %s is %dF with %s'\ + ' conditions' % (city, state, int(temp), conds)) except AttributeError: irc.error(msg, 'the format of the page was odd.') except urllib2.URLError: