Skip to content

Commit

Permalink
repopick: unquote URL
Browse files Browse the repository at this point in the history
Test: repopick -Q "status:open+-is:wip" works
Change-Id: I346c5c40e8197ad1c91235ee1cbacaa3d30c7b91
  • Loading branch information
chirayudesai authored and mikeNG committed Dec 22, 2024
1 parent 5bbc612 commit 0c5aab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/tools/repopick.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 0c5aab2

Please sign in to comment.