Ver código fonte

add little comment

Thomas Pointhuber 10 anos atrás
pai
commit
80f98d6041
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1
    0
      searx/engines/duckduckgo.py

+ 1
- 0
searx/engines/duckduckgo.py Ver arquivo

@@ -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]