[fix] pep8
This commit is contained in:
parent
7e946a369b
commit
73948f3020
2 changed files with 5 additions and 3 deletions
|
@ -51,7 +51,7 @@ class ViewsTestCase(SearxTestCase):
|
|||
result.data
|
||||
)
|
||||
self.assertIn(
|
||||
'<p class="content">first <span class="highlight">test</span> content<br /></p>',
|
||||
'<p class="content">first <span class="highlight">test</span> content<br /></p>', # noqa
|
||||
result.data
|
||||
)
|
||||
|
||||
|
|
|
@ -28,7 +28,8 @@ def highlight_content(content, query):
|
|||
query = query.decode('utf-8')
|
||||
if content.lower().find(query.lower()) > -1:
|
||||
query_regex = u'({0})'.format(re.escape(query))
|
||||
content = re.sub(query_regex, '<span class="highlight">\\1</span>', content, flags=re.I | re.U)
|
||||
content = re.sub(query_regex, '<span class="highlight">\\1</span>',
|
||||
content, flags=re.I | re.U)
|
||||
else:
|
||||
regex_parts = []
|
||||
for chunk in query.split():
|
||||
|
@ -37,7 +38,8 @@ def highlight_content(content, query):
|
|||
else:
|
||||
regex_parts.append(u'{0}'.format(re.escape(chunk)))
|
||||
query_regex = u'({0})'.format('|'.join(regex_parts))
|
||||
content = re.sub(query_regex, '<span class="highlight">\\1</span>', content, flags=re.I | re.U)
|
||||
content = re.sub(query_regex, '<span class="highlight">\\1</span>',
|
||||
content, flags=re.I | re.U)
|
||||
|
||||
return content
|
||||
|
||||
|
|
Loading…
Reference in a new issue