From 3dcb83591059699e32c1c00c0308b08a57c49048 Mon Sep 17 00:00:00 2001 From: asciimoo Date: Thu, 30 Jan 2014 02:36:05 +0100 Subject: [PATCH] [fix] function parameters --- searx/engines/xpath.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/searx/engines/xpath.py b/searx/engines/xpath.py index 14ca26158..0b50f88bb 100644 --- a/searx/engines/xpath.py +++ b/searx/engines/xpath.py @@ -37,7 +37,7 @@ def extract_text(xpath_results): return html_to_text(xpath_results.text_content()) -def extract_url(xpath_results, search_url=search_url): +def extract_url(xpath_results, search_url): url = extract_text(xpath_results) if url.startswith('//'): @@ -86,7 +86,7 @@ def response(resp): dom = html.fromstring(resp.text) if results_xpath: for result in dom.xpath(results_xpath): - url = extract_url(result.xpath(url_xpath)) + url = extract_url(result.xpath(url_xpath), search_url) title = extract_text(result.xpath(title_xpath)[0]) content = extract_text(result.xpath(content_xpath)[0]) results.append({'url': url, 'title': title, 'content': content})