Try favicon.ico if there's a HTMLParseError

This commit is contained in:
John Garland 2010-05-08 15:50:04 +10:00
parent fce16ba51f
commit 815a71fe8b
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
#
import os
from HTMLParser import HTMLParser
from HTMLParser import HTMLParser, HTMLParseError
from urlparse import urljoin, urlparse
from tempfile import mkstemp
@ -352,7 +352,7 @@ class TrackerIcons(Component):
callbackArgs=(host,), errbackArgs=(host,))
elif f.check(error.NoResource, error.ForbiddenResource) and icons:
d = self.download_icon(icons, host)
elif f.check(IndexError):
elif f.check(IndexError, HTMLParseError):
# No icons, try favicon.ico as an act of desperation
d = self.download_icon([(urljoin(host_to_url(host), "favicon.ico"), extension_to_mimetype("ico"))], host)
d.addCallbacks(self.on_download_icon_complete, self.on_download_icon_fail,