From 5cd1f1bfac66cf333150689ce27661e279586e10 Mon Sep 17 00:00:00 2001 From: Oliverpool Date: Thu, 29 Oct 2015 23:52:19 +0100 Subject: [PATCH] Correct pfdlatex error msg --- patacrep/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patacrep/errors.py b/patacrep/errors.py index 5ec9fd9b..d48f8e1f 100644 --- a/patacrep/errors.py +++ b/patacrep/errors.py @@ -47,7 +47,7 @@ class LatexCompilationError(StepError): def __init__(self, basename): super(LatexCompilationError, self).__init__( ( - """Error while pdfLaTeX compilation of "{basename}.tex" """ + """Error while LaTeX compilation of "{basename}.tex" """ """(see {basename}.log for more information).""" ).format(basename=basename) )