diff options
author | a01200356 <a01200356@itesm.mx> | 2016-01-02 00:41:14 -0600 |
---|---|---|
committer | a01200356 <a01200356@itesm.mx> | 2016-01-02 00:41:14 -0600 |
commit | e9d35c1309f05a0b214fb323049909ee7ec62ab8 (patch) | |
tree | c9b8cf6cdb951b66c86c9c55c328456e59cb4042 /searx/engines/wolframalpha_noapi.py | |
parent | 0871c7ca85cd19a2fa0971c7db28516a74255d5d (diff) | |
download | searxng-e9d35c1309f05a0b214fb323049909ee7ec62ab8.tar.gz searxng-e9d35c1309f05a0b214fb323049909ee7ec62ab8.zip |
update tests for wolframalpha
Diffstat (limited to 'searx/engines/wolframalpha_noapi.py')
-rw-r--r-- | searx/engines/wolframalpha_noapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/wolframalpha_noapi.py b/searx/engines/wolframalpha_noapi.py index 89a3c45b5..d7442db5d 100644 --- a/searx/engines/wolframalpha_noapi.py +++ b/searx/engines/wolframalpha_noapi.py @@ -53,7 +53,7 @@ def response(resp): answer = line[line.find('{'):line.rfind('}')+1] answer = loads(answer.encode('unicode-escape')) answer = answer['stringified'].decode('unicode-escape') - + results.append({'answer': answer}) # failed result |