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

@@ -158,7 +158,6 @@ def startpage(query):
     url = 'https://startpage.com/do/suggest?{query}'
     url = 'https://startpage.com/do/suggest?{query}'
 
 
     resp = get(url.format(query=urlencode({'query': query}))).text.split('\n')
     resp = get(url.format(query=urlencode({'query': query}))).text.split('\n')
-    print resp
     if len(resp) > 1:
     if len(resp) > 1:
         return resp
         return resp
     return []
     return []