Skip to content

Commit

Permalink
Remove f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
gonchik committed Aug 9, 2022
1 parent c0dcfcc commit 9432e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/jira/jira_download_attachments.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ def get_tickets(jql):
if response.status_code != 200:
continue
with open(dest_folder + "/" + filename, "wb") as f:
print(f"Saving for {key} the file {filename}")
print("Saving for {key} the file {filename}".format(key, filename))
f.write(response.content)

0 comments on commit 9432e3f

Please sign in to comment.