Skip to content

Commit

Permalink
Update latex.py
Browse files Browse the repository at this point in the history
improve error message
  • Loading branch information
mzuenni authored Feb 20, 2024
1 parent 6d789a9 commit 1a5dd95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def build_latex_pdf(builddir, tex_path, language, problem_path=None):
if not ret.status:
error(f'Failure compiling pdf:')
print(ret.out, file=sys.stderr)
error(f'return code {ret.returncode} status {ret.status}')
error(f'return code {ret.returncode}')
error(f'duration {ret.duration}')
return False

Expand Down

0 comments on commit 1a5dd95

Please sign in to comment.