Преглед на файлове

[fix] use py2/3 compatibility layer

Adam Tauber преди 7 години
родител
ревизия
36af8f9d67
променени са 1 файла, в които са добавени 1 реда и са изтрити 5 реда
  1. 1
    5
      searx/autocomplete.py

+ 1
- 5
searx/autocomplete.py Целия файл

@@ -24,11 +24,7 @@ from searx.engines import (
24 24
     categories, engines, engine_shortcuts
25 25
 )
26 26
 from searx.poolrequests import get as http_get
27
-
28
-try:
29
-    from urllib import urlencode
30
-except:
31
-    from urllib.parse import urlencode
27
+from searx.url_utils import urlencode
32 28
 
33 29
 
34 30
 def get(*args, **kwargs):