Skip to content

Commit c7bbe54

Browse files
committed
Fix url encoding of list parameters
1 parent 768d667 commit c7bbe54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/google/cloud/_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def build_api_url(cls, path, query_params=None,
135135

136136
query_params = query_params or {}
137137
if query_params:
138-
url += '?' + urlencode(query_params)
138+
url += '?' + urlencode(query_params, doseq=True)
139139

140140
return url
141141

0 commit comments

Comments
 (0)