From b1d055df7ee27a3018b6085f5f17be31de50f9cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=80=E1=85=B5=E1=86=B7=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB=E1=84=82=E1=85=B5=E1=86=B7/Infra=20?= =?UTF-8?q?Solution=E1=84=90=E1=85=B5=E1=86=B7?= Date: Mon, 20 Jan 2025 11:17:58 +0900 Subject: [PATCH] fix jira archive project method from post to put --- atlassian/jira.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlassian/jira.py b/atlassian/jira.py index 9b24980b0..245dcf66d 100644 --- a/atlassian/jira.py +++ b/atlassian/jira.py @@ -2508,7 +2508,7 @@ def archive_project(self, key): """ base_url = self.resource_url("project") url = "{base_url}/{key}/archive".format(base_url=base_url, key=key) - return self.post(url) + return self.put(url) def project(self, key, expand=None): """