cleanup: minor fixes in comboparse and soup_parser

This commit is contained in:
Username
2025-12-20 22:28:47 +01:00
parent c759f7197e
commit f289057267
2 changed files with 8 additions and 5 deletions

View File

@@ -61,8 +61,8 @@ def _parse_stdlib(html):
parser = LinkExtractor()
try:
parser.feed(html)
except:
pass
except Exception:
pass # malformed HTML, return partial results
return SoupResult(parser.tags)