diff options
Diffstat (limited to 'searx/engines/command.py')
| -rw-r--r-- | searx/engines/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/command.py b/searx/engines/command.py index 08ee5da06..0268d52eb 100644 --- a/searx/engines/command.py +++ b/searx/engines/command.py @@ -80,7 +80,7 @@ def search(query, params): def _get_command_to_run(query): - params = shlex_split(query.decode('utf-8')) + params = shlex_split(query) __check_query_params(params) cmd = [] |