diff --git a/examples/jira/jira_download_attachments.py b/examples/jira/jira_download_attachments.py index 757b88483..893c4715f 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("Saving for {key} the file {filename}".format(key, filename)) + print("Saving for {key} the file {filename}".format(key=key, filename=filename)) f.write(response.content)