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

This commit is contained in:
2026-09-26 15:20:07 -03:00
parent a481bb68fe
commit 56baf9ca72
+1 -1
View File
@@ -32,7 +32,7 @@ def pandoc(
raise FileExistsError(errno.EEXIST, os.strerror(errno.EEXIST), outf)
cmd = [bin,
"--output", "-" if output=="-" else outf.resolve(),
"--writer", to, fpath]
"--write", to, fpath]
logger.debug("CMD %s", str(cmd))
proc = subprocess.run(cmd, text=True)