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 f5a857d commit c51b9dfCopy full SHA for c51b9df
atlassian/confluence.py
@@ -2787,7 +2787,7 @@ def get_pdf_download_url_for_confluence_cloud(self, url):
2787
headers = self.form_token_headers
2788
log.info("Initiate PDF export from Confluence Cloud")
2789
response = self.get(url, headers=headers, not_json_response=True)
2790
- response_string = response.decode(encoding="utf-8", errors="strict")
+ response_string = response.decode(encoding="utf-8", errors="ignore")
2791
task_id = response_string.split('name="ajs-taskId" content="')[1].split('">')[0]
2792
poll_url = "/services/api/v1/task/{0}/progress".format(task_id)
2793
while running_task:
0 commit comments