[fix] pep8

This commit is contained in:
Adam Tauber 2014-05-16 16:51:23 +02:00
parent 7e946a369b
commit 73948f3020
2 changed files with 5 additions and 3 deletions

View File

@ -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
)

View File

@ -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