Undo the web title fix because it appears it broke more than it fixed.

This commit is contained in:
Daniel Folkinshteyn 2011-11-21 15:14:34 -05:00
parent b533290c7a
commit f3e5223f3f
1 changed files with 0 additions and 8 deletions

View File

@ -90,10 +90,6 @@ class Web(callbacks.PluginRegexp):
try:
size = conf.supybot.protocols.http.peekSize()
text = utils.web.getUrl(url, size=size)
try:
text = text.decode('utf8')
except UnicodeDecodeError:
text = text.decode('latin1')
except utils.web.Error, e:
self.log.info('Couldn\'t snarf title of %u: %s.', url, e)
return
@ -174,10 +170,6 @@ class Web(callbacks.PluginRegexp):
"""
size = conf.supybot.protocols.http.peekSize()
text = utils.web.getUrl(url, size=size)
try:
text = text.decode('utf8')
except UnicodeDecodeError:
text = text.decode('latin1')
parser = Title()
try:
parser.feed(text)