logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 7aa9f4885a3ecb6d65af6375188c4a7ea8f7714d
parent: 0ad272c5cb81a9c69008aa86a1f29cd642ddf4ff
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Fri, 16 Oct 2015 11:53:52 +0200

[fix] unicode decoding

Diffstat:

Msearx/engines/bing_news.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/engines/bing_news.py b/searx/engines/bing_news.py @@ -68,7 +68,7 @@ def request(query, params): def response(resp): results = [] - rss = etree.fromstring(resp.text) + rss = etree.fromstring(resp.content) ns = rss.nsmap