From c3b64cb32ac463090c11b301f5f9f4cc2c61c9c8 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sun, 19 Nov 2023 18:48:35 +0100 Subject: [PATCH] fix an encoding bug --- rendercv/rendering.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rendercv/rendering.py b/rendercv/rendering.py index 5f47d9f..454c339 100644 --- a/rendercv/rendering.py +++ b/rendercv/rendering.py @@ -454,6 +454,7 @@ def run_latex(latex_file_path: str) -> str: stdout=subprocess.PIPE, stdin=subprocess.DEVNULL, # don't allow TinyTeX to ask for user input text=True, + encoding="utf-8", ) as latex_process: output, error = latex_process.communicate()