From 9432e3f7c26beaab6260296f61599f4fb56d5ca5 Mon Sep 17 00:00:00 2001 From: Gonchik Tsymzhitov Date: Tue, 9 Aug 2022 15:38:08 +0300 Subject: [PATCH] Remove f-string --- examples/jira/jira_download_attachments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/jira/jira_download_attachments.py b/examples/jira/jira_download_attachments.py index bc0719fcf..757b88483 100644 --- a/examples/jira/jira_download_attachments.py +++ b/examples/jira/jira_download_attachments.py @@ -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)