Skip to content

Commit fe13d98

Browse files
committed
encoding with safe comma #479
1 parent d32f3a2 commit fe13d98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/rest_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def request(
363363
else:
364364
url += "?"
365365
if params:
366-
url += urlencode(params or {})
366+
url += urlencode((params or {}), safe=',')
367367
if flags:
368368
url += ("&" if params or params_already_in_url else "") + "&".join(flags or [])
369369
json_dump = None

0 commit comments

Comments
 (0)