[mod] ignore startpage unicode errors

dependabot/pip/master/sphinx-6.1.3
Adam Tauber 10 years ago
parent 23b4a53248
commit c8be128e97

@ -66,7 +66,10 @@ def response(resp):
continue
link = links[0]
url = link.attrib.get('href')
title = escape(link.text_content())
try:
title = escape(link.text_content())
except UnicodeDecodeError:
continue
# block google-ad url's
if re.match("^http(s|)://www.google.[a-z]+/aclk.*$", url):

Loading…
Cancel
Save