Skip to content

Commit b7baf76

Browse files
Gonchik Tsymzhitovgonchik
authored andcommitted
Adjust f-string
1 parent 52cff35 commit b7baf76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

atlassian/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.15.0
1+
3.16.0

atlassian/jira.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ def issue_createmeta(self, project, expand="projects.issuetypes.fields"):
845845

846846
def issue_editmeta(self, key):
847847
base_url = self.resource_url("issue")
848-
url = f"{base_url}/{key}/editmeta"
848+
url = "{}/{}/editmeta".format(base_url, key)
849849
return self.get(url)
850850

851851
def get_issue_changelog(self, issue_key):

0 commit comments

Comments
 (0)