Sfoglia il codice sorgente

add little comment

Thomas Pointhuber 10 anni fa
parent
commit
80f98d6041
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1
    0
      searx/engines/duckduckgo.py

+ 1
- 0
searx/engines/duckduckgo.py Vedi File

@@ -47,6 +47,7 @@ def response(resp):
47 47
 
48 48
     doc = fromstring(resp.text)
49 49
 
50
+    # parse results
50 51
     for r in doc.xpath(result_xpath):
51 52
         try:
52 53
             res_url = r.xpath(url_xpath)[-1]