1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-29 16:10:16 +02:00

[fix] handle single closing element in HTMLTextExtractor

This commit is contained in:
Adam Tauber 2015-01-22 17:43:45 +01:00
parent 06186e72a9
commit 699fe60e50

View File

@ -82,8 +82,12 @@ class HTMLTextExtractor(HTMLParser):
self.tags.append(tag)
def handle_endtag(self, tag):
if not self.tags:
return
if tag != self.tags[-1]:
raise Exception("invalid html")
self.tags.pop()
def is_valid_tag(self):