Skip to content
Snippets Groups Projects
Verified Commit 473aa42f authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Encode HTML string before passing to storage

parent e1082a8a
No related branches found
No related tags found
1 merge request!931Resolve "PDF generation broken with S3 storage"
Pipeline #51379 passed
......@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Fixed
~~~~~
* PDF generation failed with S3 storage due to incompatibility with boto3
`2.7`_ - 2022-01-24
-------------------
......
......@@ -79,7 +79,9 @@ def generate_pdf_from_template(
processed_context = context
html_template = render_to_string(template_name, processed_context, request)
file_object = PDFFile.objects.create(html_file=ContentFile(html_template, name="source.html"))
file_object = PDFFile.objects.create(
html_file=ContentFile(html_template.encode(), name="source.html")
)
# As this method may be run in background and there is no request available,
# we have to use a predefined URL from settings then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment