Web: Fix compatibility with Python <= 2.6.

This commit is contained in:
Valentin Lorentz 2012-09-22 17:43:59 +00:00
parent a95546316f
commit ad3bf1302f

View File

@ -107,7 +107,7 @@ class Web(callbacks.PluginRegexp):
domain = utils.web.getDomain(url) domain = utils.web.getDomain(url)
title = utils.web.htmlToText(parser.title.strip()) title = utils.web.htmlToText(parser.title.strip())
if sys.version_info[0] < 3: if sys.version_info[0] < 3:
title = title.encode('utf8', errors='replace') title = title.encode('utf8', 'replace')
s = format(_('Title: %s (at %s)'), title, domain) s = format(_('Title: %s (at %s)'), title, domain)
irc.reply(s, prefixNick=False) irc.reply(s, prefixNick=False)
titleSnarfer = urlSnarfer(titleSnarfer) titleSnarfer = urlSnarfer(titleSnarfer)