We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0dcfcc commit 9432e3fCopy full SHA for 9432e3f
examples/jira/jira_download_attachments.py
@@ -38,5 +38,5 @@ def get_tickets(jql):
38
if response.status_code != 200:
39
continue
40
with open(dest_folder + "/" + filename, "wb") as f:
41
- print(f"Saving for {key} the file {filename}")
+ print("Saving for {key} the file {filename}".format(key, filename))
42
f.write(response.content)
0 commit comments