tex -> tex_prikaz
This commit is contained in:
parent
f01a808ac2
commit
7e8092c30c
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ class TeXResponseMixin:
|
|||
nebo jiný seznam absolutních cest).
|
||||
"""
|
||||
dalsi_potrebne_soubory = []
|
||||
tex = "pdflatex"
|
||||
tex_prikaz = "pdflatex"
|
||||
|
||||
def render_to_response(self, context, **response_kwargs):
|
||||
zdrojak = render_to_string(self.get_template_names(), context)
|
||||
|
@ -100,7 +100,7 @@ class TeXResponseMixin:
|
|||
texfile.write(zdrojak)
|
||||
for file in self.dalsi_potrebne_soubory:
|
||||
shutil.copy(file, tempdir)
|
||||
subprocess.call([self.tex, "main.tex"], cwd=tempdir, stdout=subprocess.DEVNULL)
|
||||
subprocess.call([self.tex_prikaz, "main.tex"], cwd=tempdir, stdout=subprocess.DEVNULL)
|
||||
|
||||
with open(tempdir / "main.pdf", "rb") as pdffile:
|
||||
response = HttpResponse(pdffile.read(), content_type='application/pdf', **response_kwargs)
|
||||
|
|
Loading…
Reference in a new issue