logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 02cb5602b4373241fe6a5f557a1afddaf9aa88d3
parent 7828a1833b06a169f5283f66ba9d54d060a96a11
Author: Zeph <zeph33@gmail.com>
Date:   Thu, 23 Nov 2017 22:04:00 +0100

[fix] autocompleter py3 compatibility - fixes #1088

Diffstat:

Msearx/query.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/query.py b/searx/query.py @@ -51,7 +51,7 @@ class RawTextQuery(object): self.query_parts = [] # split query, including whitespaces - raw_query_parts = re.split(r'(\s+)', self.query) + raw_query_parts = re.split(r'(\s+)' if isinstance(self.query, str) else b'(\s+)', self.query) parse_next = True