We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17f5074 + cdfb3ba commit 654b49fCopy full SHA for 654b49f
1 file changed
connect/client/mixins.py
@@ -191,5 +191,7 @@ def _fix_url_params(self, url, kwargs):
191
params = kwargs.pop('params')
192
qs_fragment = '&'.join([f'{k}={v}' for k, v in params.items()])
193
join = '?' if '?' not in url else '&'
194
+ if url.endswith('?'):
195
+ join = ''
196
url = f'{url}{join}{qs_fragment}'
197
return url, kwargs
0 commit comments