mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-17 06:00:42 +01:00
Merge branch 'py3k-backport' into testing
This commit is contained in:
commit
7e0d868db1
@ -29,6 +29,7 @@
|
|||||||
###
|
###
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
import sys
|
||||||
import cgi
|
import cgi
|
||||||
import time
|
import time
|
||||||
import socket
|
import socket
|
||||||
@ -130,7 +131,9 @@ class Google(callbacks.PluginRegexp):
|
|||||||
for result in data:
|
for result in data:
|
||||||
title = utils.web.htmlToText(result['titleNoFormatting']\
|
title = utils.web.htmlToText(result['titleNoFormatting']\
|
||||||
.encode('utf-8'))
|
.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 title:
|
||||||
if bold:
|
if bold:
|
||||||
title = ircutils.bold(title)
|
title = ircutils.bold(title)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user