diff options
Diffstat (limited to 'searx')
-rw-r--r-- | searx/engines/yahoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/yahoo.py b/searx/engines/yahoo.py index 09d06aff0..bd6e6721c 100644 --- a/searx/engines/yahoo.py +++ b/searx/engines/yahoo.py @@ -153,7 +153,7 @@ def response(resp): 'content': content }) - for suggestion in eval_xpath_list(dom, '//div[contains(@class, "AlsoTry")]'): + for suggestion in eval_xpath_list(dom, '//div[contains(@class, "AlsoTry")]//table//a'): # append suggestion results.append({'suggestion': extract_text(suggestion)}) |