Skip to content

Commit 405049f

Browse files
SuperWonjune김원준님/Infra Solution팀
and
김원준님/Infra Solution팀
authored
fix jira archive project method from post to put (#1491)
Co-authored-by: 김원준님/Infra Solution팀 <wonjun_kim@sktelecom.com>
1 parent 85eea47 commit 405049f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/jira.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ def archive_project(self, key):
25082508
"""
25092509
base_url = self.resource_url("project")
25102510
url = "{base_url}/{key}/archive".format(base_url=base_url, key=key)
2511-
return self.post(url)
2511+
return self.put(url)
25122512

25132513
def project(self, key, expand=None):
25142514
"""

0 commit comments

Comments
 (0)