mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
Merge pull request #319 from Hoaas/master
Fixes UnicodeEncodeError in Google Calc
This commit is contained in:
commit
766641e8ea
@ -351,7 +351,7 @@ class Google(callbacks.PluginRegexp):
|
|||||||
js = simplejson.loads(js)
|
js = simplejson.loads(js)
|
||||||
|
|
||||||
if js['error'] == '':
|
if js['error'] == '':
|
||||||
irc.reply("%s = %s" % (js['lhs'], js['rhs'],))
|
irc.reply("%s = %s" % (js['lhs'].encode('utf8'), js['rhs'].encode('utf8'),))
|
||||||
return
|
return
|
||||||
|
|
||||||
url = self._googleUrl(expr)
|
url = self._googleUrl(expr)
|
||||||
|
Loading…
Reference in New Issue
Block a user