Was forgetting this last bit from 64e0c558. Also give a message such
that the user is informed that not everything is lost if latex fails.
With this, the previews are generated also when the document directly
specifies a specific pdf output format.
This commit is contained in:
Enrico Forestieri 2015-04-29 13:59:28 +02:00
parent 75f7eafd65
commit d44b0a19cb
2 changed files with 4 additions and 2 deletions

View File

@ -302,7 +302,7 @@ def legacy_conversion_step1(latex_file, dpi, output_format, fg_color, bg_color,
# Compile the latex file.
latex_status, latex_stdout = run_latex(latex, latex_file)
if latex_status:
return (latex_status, [])
warning("trying to recover from failed compilation")
if pdf_output:
return legacy_conversion_step3(latex_file, dpi, output_format, True, skipMetrics)

View File

@ -435,7 +435,9 @@ def main(argv):
fg_color, bg_color, latex, pdf_output)
# Compile the latex file.
run_latex(latex, latex_file, bibtex)
latex_status, latex_stdout = run_latex(latex, latex_file, bibtex)
if latex_status:
warning("trying to recover from failed compilation")
# The dvi output file name
dvi_file = latex_file_re.sub(".dvi", latex_file)