Skip to content

Commit

Permalink
don't suppress stder
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Sep 22, 2023
1 parent 1f9591f commit 8afd239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loutils/doc2pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def doc2pdf(filein: Path):
cmd = [get_lo_exe(), "--convert-to", "pdf", "--outdir", str(filein.parent), str(filein)]

subprocess.check_call(cmd, stderr=subprocess.DEVNULL)
subprocess.check_call(cmd)


if __name__ == "__main__":
Expand Down

0 comments on commit 8afd239

Please sign in to comment.