Browse Source

Fix klafy horrors

bug-massive-boostrap-form
Hugo Levy-Falk 6 years ago
committed by root
parent
commit
09da1b4d43
  1. 13
      cotisations/tex.py

13
cotisations/tex.py

@ -110,13 +110,12 @@ def create_pdf(template, ctx={}):
with tempfile.TemporaryDirectory() as tempdir: with tempfile.TemporaryDirectory() as tempdir:
for _ in range(2): for _ in range(2):
with open("/var/www/re2o/out.log", "w") as f: process = Popen(
process = Popen( ["pdflatex", "-output-directory", tempdir],
["pdflatex", "-output-directory", tempdir], stdin=PIPE,
stdin=PIPE, stdout=PIPE,
stdout=f, # PIPE, )
) process.communicate(rendered_tpl)
process.communicate(rendered_tpl)
with open(os.path.join(tempdir, "texput.pdf"), "rb") as f: with open(os.path.join(tempdir, "texput.pdf"), "rb") as f:
pdf = f.read() pdf = f.read()

Loading…
Cancel
Save