forked from zaclys/searxng
remove 'print'
This commit is contained in:
parent
fb4df9d6c3
commit
9d10277c22
|
@ -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 []
|
||||||
|
|
Loading…
Reference in New Issue