diff options
author | d-tux <deniswernert@gmail.com> | 2019-01-14 13:40:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-14 13:40:57 +0100 |
commit | f1814079f0da111c27e795e023f5e1ab644c94a0 (patch) | |
tree | 55ce890e9d3edb621511911a6beed2ca8ce00e02 /searx/engines | |
parent | 329172f66e7ad066f7cdd24db5d414c816ad8a80 (diff) | |
parent | 383e3cc554a3704cd8b076aa686f32b8ce78f681 (diff) | |
download | searxng-f1814079f0da111c27e795e023f5e1ab644c94a0.tar.gz searxng-f1814079f0da111c27e795e023f5e1ab644c94a0.zip |
Merge branch 'master' into engines/unsplash
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/wolframalpha_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/wolframalpha_api.py b/searx/engines/wolframalpha_api.py index 595c6b7de..1c58c4a9b 100644 --- a/searx/engines/wolframalpha_api.py +++ b/searx/engines/wolframalpha_api.py @@ -65,7 +65,7 @@ def replace_pua_chars(text): def response(resp): results = [] - search_results = etree.XML(resp.text) + search_results = etree.XML(resp.content) # return empty array if there are no results if search_results.xpath(failure_xpath): |