summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
Diffstat (limited to 'searx')
-rw-r--r--searx/utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 89128d506..f15f8a4bc 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -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):