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

Commit f7d266d7 authored by Chirayu Desai's avatar Chirayu Desai Committed by Michael Bestas
Browse files

repopick: unquote URL

Test: repopick -Q "status:open+-is:wip" works
Change-Id: I346c5c40e8197ad1c91235ee1cbacaa3d30c7b91
parent ee8fc41b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ def build_query_url(remote_url, query, auth):
        },
        doseq=True,
    )
    return urllib.parse.urlunparse(urllib.parse.ParseResult(**p))
    return urllib.parse.unquote(urllib.parse.urlunparse(urllib.parse.ParseResult(**p)))


def fetch_query_via_http(remote_url, query, auth=True):