Przeglądaj źródła

Merge pull request #1093 from Zeph33/fix/#1088

[fix] autocompleter py3 compatibility - fixes #1088
Adam Tauber 7 lat temu
rodzic
commit
0f8d7a00af
Brak konta powiązanego z e-mailem autora
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      searx/query.py

+ 1
- 1
searx/query.py Wyświetl plik

@@ -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