Atualizar src-py/renatoxsr/utils/pandoc.py

This commit is contained in:
2026-09-26 15:24:28 -03:00
parent 56baf9ca72
commit 3dafcc7998
+1 -1
View File
@@ -34,7 +34,7 @@ def pandoc(
"--output", "-" if output=="-" else outf.resolve(),
"--write", to, fpath]
logger.debug("CMD %s", str(cmd))
proc = subprocess.run(cmd, text=True)
proc = subprocess.run(cmd, capture_output=True, text=True)
if proc.stderr:
logger.error(proc.stderr)