forked from zaclys/searxng
[fix] never pass bangs to autocomplete suggestions
This commit is contained in:
parent
69c8ad86f3
commit
40272b0044
2 changed files with 9 additions and 2 deletions
|
|
@ -16,6 +16,7 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|||
'''
|
||||
|
||||
|
||||
import sys
|
||||
from lxml import etree
|
||||
from json import loads
|
||||
from searx import settings
|
||||
|
|
@ -26,6 +27,9 @@ from searx.engines import (
|
|||
from searx.poolrequests import get as http_get
|
||||
from searx.url_utils import urlencode
|
||||
|
||||
if sys.version_info[0] == 3:
|
||||
unicode = str
|
||||
|
||||
|
||||
def get(*args, **kwargs):
|
||||
if 'timeout' not in kwargs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue