mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Google: Fix encoding with Python 3.
This commit is contained in:
parent
cca03ba06b
commit
df62ddad78
@ -29,6 +29,7 @@
|
||||
###
|
||||
|
||||
import re
|
||||
import sys
|
||||
import cgi
|
||||
import time
|
||||
import socket
|
||||
@ -130,7 +131,9 @@ class Google(callbacks.PluginRegexp):
|
||||
for result in data:
|
||||
title = utils.web.htmlToText(result['titleNoFormatting']\
|
||||
.encode('utf-8'))
|
||||
url = result['unescapedUrl'].encode('utf-8')
|
||||
url = result['unescapedUrl']
|
||||
if sys.version_info[0] < 3:
|
||||
url = url.encode('utf-8')
|
||||
if title:
|
||||
if bold:
|
||||
title = ircutils.bold(title)
|
||||
|
Loading…
Reference in New Issue
Block a user