Skip to content

Commit 9432e3f

Browse files
committed
Remove f-string
1 parent c0dcfcc commit 9432e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/jira/jira_download_attachments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ def get_tickets(jql):
3838
if response.status_code != 200:
3939
continue
4040
with open(dest_folder + "/" + filename, "wb") as f:
41-
print(f"Saving for {key} the file {filename}")
41+
print("Saving for {key} the file {filename}".format(key, filename))
4242
f.write(response.content)

0 commit comments

Comments
 (0)