From 40272b0044a2ef520ff9c3fb3513c5a340663f22 Mon Sep 17 00:00:00 2001 From: Marc Abonce Seguin Date: Thu, 18 Jan 2018 20:51:27 -0600 Subject: [fix] never pass bangs to autocomplete suggestions --- searx/autocomplete.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'searx/autocomplete.py') diff --git a/searx/autocomplete.py b/searx/autocomplete.py index f8a45b3ec..ff8958500 100644 --- a/searx/autocomplete.py +++ b/searx/autocomplete.py @@ -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: -- cgit v1.2.3