Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e781863 authored by Alexandre Flament's avatar Alexandre Flament
Browse files

[fix] command engine: SearchQuery.query is str not bytes

see c225db45
parent cdceec1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = []