mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Web: Fix title snarfer with titles containing unicode characters.
This commit is contained in:
parent
841dc719e1
commit
a95546316f
@ -29,6 +29,7 @@
|
||||
###
|
||||
|
||||
import re
|
||||
import sys
|
||||
import HTMLParser
|
||||
import htmlentitydefs
|
||||
|
||||
@ -105,6 +106,8 @@ class Web(callbacks.PluginRegexp):
|
||||
if parser.title:
|
||||
domain = utils.web.getDomain(url)
|
||||
title = utils.web.htmlToText(parser.title.strip())
|
||||
if sys.version_info[0] < 3:
|
||||
title = title.encode('utf8', errors='replace')
|
||||
s = format(_('Title: %s (at %s)'), title, domain)
|
||||
irc.reply(s, prefixNick=False)
|
||||
titleSnarfer = urlSnarfer(titleSnarfer)
|
||||
|
Loading…
Reference in New Issue
Block a user