Skip to content

Commit

Permalink
fix: query encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaelJarniac committed Feb 26, 2021
1 parent db7b67e commit 2b12860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildurl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def path(self) -> str:
@property
def query(self) -> str:
"""Query string."""
return urlencode(self._query_dict)
return urlencode(self._query_dict, doseq=True)

@property
def parts(self) -> tuple:
Expand Down

0 comments on commit 2b12860

Please sign in to comment.