Selaa lähdekoodia

[fix] autocompleter py3 compatibility - fixes #1088

Zeph 7 vuotta sitten
vanhempi
commit
02cb5602b4
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      searx/query.py

+ 1
- 1
searx/query.py Näytä tiedosto

@@ -51,7 +51,7 @@ class RawTextQuery(object):
51 51
         self.query_parts = []
52 52
 
53 53
         # split query, including whitespaces
54
-        raw_query_parts = re.split(r'(\s+)', self.query)
54
+        raw_query_parts = re.split(r'(\s+)' if isinstance(self.query, str) else b'(\s+)', self.query)
55 55
 
56 56
         parse_next = True
57 57