Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 111a86d3 authored by Adam Tauber's avatar Adam Tauber
Browse files

[fix] html escape

parent ea414c65
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
from urllib import urlencode
from lxml import html
from cgi import escape

base_url = None
search_url = None
@@ -35,11 +36,11 @@ def response(resp):
        if url.startswith('http://www.google.')\
           or url.startswith('https://www.google.'):
            continue
        title = link.text_content()
        title = escape(link.text_content())

        content = ''
        if result.xpath('./p[@class="desc"]'):
            content = result.xpath('./p[@class="desc"]')[0].text_content()
            content = escape(result.xpath('./p[@class="desc"]')[0].text_content())

        results.append({'url': url, 'title': title, 'content': content})