Skip to content

Commit b1d055d

Browse files
author
김원준님/Infra Solution팀
committed
fix jira archive project method from post to put
1 parent 9eb04fd commit b1d055d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/jira.py

Lines changed: 1 addition & 1 deletion
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)