Google: Fix currency conversions.

This commit is contained in:
Terje Hoås 2012-07-13 19:05:21 +02:00
parent ac3724d326
commit e19ff328b6
1 changed files with 5 additions and 0 deletions

View File

@ -291,6 +291,11 @@ class Google(callbacks.PluginRegexp):
.replace('\\', '\\\\')
js = simplejson.loads(js)
# Currency conversion
if js['icc'] == True:
irc.reply("%s = %s" % (js['lhs'], js['rhs'],))
return
url = self._googleUrl(expr)
html = utils.web.getUrl(url)
match = self._calcRe1.search(html)