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

Unverified Commit 3c4a9c11 authored by Alexandre Flament's avatar Alexandre Flament Committed by GitHub
Browse files

Merge pull request #2358 from dalf/fix-command

[fix] command engine: SearchQuery.query is str not bytes
parents 9f8ebeca 1e781863
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -80,7 +80,7 @@ def search(query, params):




def _get_command_to_run(query):
def _get_command_to_run(query):
    params = shlex_split(query.decode('utf-8'))
    params = shlex_split(query)
    __check_query_params(params)
    __check_query_params(params)


    cmd = []
    cmd = []