summaryrefslogtreecommitdiff
path: root/searx/search/checker/impl.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/search/checker/impl.py')
-rw-r--r--searx/search/checker/impl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/search/checker/impl.py b/searx/search/checker/impl.py
index 087ced5c..b5dff1fd 100644
--- a/searx/search/checker/impl.py
+++ b/searx/search/checker/impl.py
@@ -36,7 +36,7 @@ HTML_TAGS = [
def get_check_no_html():
- rep = ['<' + tag + '[^\>]*>' for tag in HTML_TAGS]
+ rep = ['<' + tag + r'[^\>]*>' for tag in HTML_TAGS]
rep += ['</' + tag + '>' for tag in HTML_TAGS]
pattern = re.compile('|'.join(rep))