##// END OF EJS Templates
Renamed compiler to command
Thomas Robitaille -
Show More
@@ -30,7 +30,7 b' class PDFPostProcessor(PostProcessorBase):'
30 How many times pdflatex will be called.
30 How many times pdflatex will be called.
31 """)
31 """)
32
32
33 compiler = List(["pdflatex", "{filename}"], config=True, help="""
33 command = List(["pdflatex", "{filename}"], config=True, help="""
34 Shell command used to compile PDF.""")
34 Shell command used to compile PDF.""")
35
35
36 verbose = Bool(False, config=True, help="""
36 verbose = Bool(False, config=True, help="""
@@ -42,7 +42,7 b' class PDFPostProcessor(PostProcessorBase):'
42 Consume and write Jinja output a PDF.
42 Consume and write Jinja output a PDF.
43 See files.py for more...
43 See files.py for more...
44 """
44 """
45 command = [c.format(filename=input) for c in self.compiler]
45 command = [c.format(filename=input) for c in self.command]
46 self.log.info("Building PDF: `%s`", ' '.join(command))
46 self.log.info("Building PDF: `%s`", ' '.join(command))
47 for index in range(self.iteration_count):
47 for index in range(self.iteration_count):
48 if self.verbose:
48 if self.verbose:
General Comments 0
You need to be logged in to leave comments. Login now