Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f6136 commit e01c3c6Copy full SHA for e01c3c6
1 file changed
doc/make.py
@@ -52,12 +52,8 @@ def latex():
52
# Produce pdf.
53
os.chdir('build/latex')
54
55
- # Copying the makefile produced by sphinx...
56
- if (os.system('pdflatex Matplotlib.tex') or
57
- os.system('pdflatex Matplotlib.tex') or
58
- os.system('makeindex -s python.ist Matplotlib.idx') or
59
- os.system('makeindex -s python.ist modMatplotlib.idx') or
60
- os.system('pdflatex Matplotlib.tex')):
+ # Call the makefile produced by sphinx...
+ if os.system('make'):
61
raise SystemExit("Rendering LaTeX failed.")
62
63
os.chdir('../..')
0 commit comments