Browse Source

remove 'print'

Dalf 10 years ago
parent
commit
9d10277c22
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      searx/autocomplete.py

+ 0
- 1
searx/autocomplete.py View File

158
     url = 'https://startpage.com/do/suggest?{query}'
158
     url = 'https://startpage.com/do/suggest?{query}'
159
 
159
 
160
     resp = get(url.format(query=urlencode({'query': query}))).text.split('\n')
160
     resp = get(url.format(query=urlencode({'query': query}))).text.split('\n')
161
-    print resp
162
     if len(resp) > 1:
161
     if len(resp) > 1:
163
         return resp
162
         return resp
164
     return []
163
     return []