Skip to content

Commit 4675ca6

Browse files
committed
Add link to websude resource
1 parent fe13d98 commit 4675ca6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

atlassian/jira.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2285,6 +2285,8 @@ def user_get_websudo(self):
22852285
def invalidate_websudo(self):
22862286
"""
22872287
This method invalidates any current WebSudo session.
2288+
link:
2289+
https://developer.atlassian.com/server/jira/platform/rest/v10002/api-group-websudo/#api-group-websudo
22882290
"""
22892291
return self.delete("rest/auth/1/websudo")
22902292

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 {}), safe=',')
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)