fix stdout argument of subprocess.run

This commit is contained in:
Sina Atalay 2023-10-12 18:55:08 +02:00
parent 21c95ad0ea
commit 70e8bac661
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ def run_latex(latex_file_path):
],
cwd=os.path.dirname(latex_file_path),
check=True,
stdout=subprocess.STDOUT, # suppress latexmk output
stdout=subprocess.PIPE, # suppress latexmk output
stderr=subprocess.STDOUT, # suppress latexmk output
)
except subprocess.CalledProcessError as e: