mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-30 18:52:38 +02:00
Add missing newline char
This commit is contained in:
parent
b7b76174ab
commit
6232062146
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue