Add missing newline char

This commit is contained in:
Alex Pyrgiotis 2023-10-02 15:24:30 +03:00
parent b7b76174ab
commit 6232062146
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -352,7 +352,7 @@ class Container(IsolationProvider):
with open(log_path, "r", encoding="ascii", errors="replace") as f: with open(log_path, "r", encoding="ascii", errors="replace") as f:
text = ( text = (
f"Container output: (pixels to PDF)\n" f"Container output: (pixels to PDF)\n"
f"{PIXELS_TO_PDF_LOG_START}{f.read()}{PIXELS_TO_PDF_LOG_END}" f"{PIXELS_TO_PDF_LOG_START}\n{f.read()}{PIXELS_TO_PDF_LOG_END}"
) )
log.info(text) log.info(text)