From 8cbf8a47e48fb942994421c45d15aeb01b5b9b48 2013-08-01 20:45:08 From: Thomas Robitaille Date: 2013-08-01 20:45:08 Subject: [PATCH] Renamed compiler to command --- diff --git a/IPython/nbconvert/post_processors/pdf.py b/IPython/nbconvert/post_processors/pdf.py index 4c3f28b..db81310 100644 --- a/IPython/nbconvert/post_processors/pdf.py +++ b/IPython/nbconvert/post_processors/pdf.py @@ -30,7 +30,7 @@ class PDFPostProcessor(PostProcessorBase): How many times pdflatex will be called. """) - compiler = List(["pdflatex", "{filename}"], config=True, help=""" + command = List(["pdflatex", "{filename}"], config=True, help=""" Shell command used to compile PDF.""") verbose = Bool(False, config=True, help=""" @@ -42,7 +42,7 @@ class PDFPostProcessor(PostProcessorBase): Consume and write Jinja output a PDF. See files.py for more... """ - command = [c.format(filename=input) for c in self.compiler] + command = [c.format(filename=input) for c in self.command] self.log.info("Building PDF: `%s`", ' '.join(command)) for index in range(self.iteration_count): if self.verbose: