diff options
author | Dalf <alex@al-f.net> | 2020-08-11 16:25:03 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-09-10 10:49:42 +0200 |
commit | c225db45c8a4ab466bff049216f7e0189dc1b067 (patch) | |
tree | 16be3299a6faf15538fc1f2cf181aadc422039fd /searx/utils.py | |
parent | 78883777438fc07833d983c50d9b131eb6feb9eb (diff) | |
download | searxng-c225db45c8a4ab466bff049216f7e0189dc1b067.tar.gz searxng-c225db45c8a4ab466bff049216f7e0189dc1b067.zip |
Drop Python 2 (4/n): SearchQuery.query is a str instead of bytes
Diffstat (limited to 'searx/utils.py')
-rw-r--r-- | searx/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/searx/utils.py b/searx/utils.py index f87ea177a..de5b68ca3 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -59,7 +59,6 @@ def highlight_content(content, query): if content.find('<') != -1: return content - query = query.decode() if content.lower().find(query.lower()) > -1: query_regex = '({0})'.format(re.escape(query)) content = re.sub(query_regex, '<span class="highlight">\\1</span>', |