Skip to content

Commit 889aec9

Browse files
committed
remove f-string as still have installations on python2
1 parent 84332f0 commit 889aec9

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
@@ -317,7 +317,7 @@ def request_current_index_from_node(self, node_id):
317317
:return:
318318
"""
319319
base_url = self.resource_url("cluster/index-snapshot")
320-
url = f"{base_url}/{node_id}"
320+
url = "{base_url}/{node_id}".format(base_url=base_url, node_id=node_id)
321321
return self.put(url)
322322

323323
"""

0 commit comments

Comments
 (0)