David A Roberts пре 8 година
родитељ
комит
7492997c51
1 измењених фајлова са 4 додато и 4 уклоњено
  1. 4
    4
      searx/engines/xpath.py

+ 4
- 4
searx/engines/xpath.py Прегледај датотеку

31
 def extract_text(xpath_results):
31
 def extract_text(xpath_results):
32
     if type(xpath_results) == list:
32
     if type(xpath_results) == list:
33
         # it's list of result : concat everything using recursive call
33
         # it's list of result : concat everything using recursive call
34
-        if not xpath_results:
35
-            raise Exception('Empty url resultset')
36
         result = ''
34
         result = ''
37
         for e in xpath_results:
35
         for e in xpath_results:
38
             result = result + extract_text(e)
36
             result = result + extract_text(e)
48
 
46
 
49
 
47
 
50
 def extract_url(xpath_results, search_url):
48
 def extract_url(xpath_results, search_url):
49
+    if xpath_results == []:
50
+        raise Exception('Empty url resultset')
51
     url = extract_text(xpath_results)
51
     url = extract_text(xpath_results)
52
 
52
 
53
     if url.startswith('//'):
53
     if url.startswith('//'):
103
     if results_xpath:
103
     if results_xpath:
104
         for result in dom.xpath(results_xpath):
104
         for result in dom.xpath(results_xpath):
105
             url = extract_url(result.xpath(url_xpath), search_url)
105
             url = extract_url(result.xpath(url_xpath), search_url)
106
-            title = extract_text(result.xpath(title_xpath)[0])
107
-            content = extract_text(result.xpath(content_xpath)[0])
106
+            title = extract_text(result.xpath(title_xpath))
107
+            content = extract_text(result.xpath(content_xpath))
108
             results.append({'url': url, 'title': title, 'content': content})
108
             results.append({'url': url, 'title': title, 'content': content})
109
     else:
109
     else:
110
         for url, title, content in zip(
110
         for url, title, content in zip(