Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion atlassian/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -2508,7 +2508,7 @@
"""
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)

Check warning on line 2511 in atlassian/jira.py

View check run for this annotation

Codecov / codecov/patch

atlassian/jira.py#L2511

Added line #L2511 was not covered by tests

def project(self, key, expand=None):
"""
Expand Down
Loading