Explorar el Código

[fix] add basestring for py3

Adam Tauber hace 6 años
padre
commit
aef2b07969
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      searx/utils.py

+ 1
- 0
searx/utils.py Ver fichero

@@ -33,6 +33,7 @@ if sys.version_info[0] == 3:
33 33
     unichr = chr
34 34
     unicode = str
35 35
     IS_PY2 = False
36
+    basestring = str
36 37
 else:
37 38
     IS_PY2 = True
38 39