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,7 +158,6 @@ def startpage(query):
158 158
     url = 'https://startpage.com/do/suggest?{query}'
159 159
 
160 160
     resp = get(url.format(query=urlencode({'query': query}))).text.split('\n')
161
-    print resp
162 161
     if len(resp) > 1:
163 162
         return resp
164 163
     return []