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)