This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author efiring
Recipients efiring, georg.brandl
Date 2008-10-21.21:59:21
SpamBayes Score 7.255133e-05
Marked as misclassified No
Message-id <1224626362.8.0.706164926632.issue4166@psf.upfronthosting.co.za>
In-reply-to
Content
Building the matplotlib docs using Sphinx svn 66969 results in a Latex
error ending in:

) (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty
(/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty
(/usr/share/texmf-texlive/tex/latex/graphics/trig.sty)
(/etc/texmf/tex/latex/config/graphics.cfg)))
(/usr/share/texmf-texlive/tex/plain/misc/pdfcolor.tex)
! Extra \fi.
l.62 \fi\fi

The line 62 turns out to be in sphinx.sty; removing one "\fi" allows the
build to proceed.  The svn diff is:

efiring@manini:~/programs/py/sphinx_svn$ svn -x '-w' diff
Index: sphinx/texinputs/sphinx.sty
===================================================================
--- sphinx/texinputs/sphinx.sty	(revision 66993)
+++ sphinx/texinputs/sphinx.sty	(working copy)
@@ -59,7 +59,7 @@
 \ifx\ifxetex\undefined\else\ifxetex
   \def\py@NormalColor{\color[rgb]{0.0,0.0,0.0}}
   \def\py@TitleColor{\color{TitleColor}}
-\fi\fi
+\fi
 
 % Increase printable page size (copied from fullpage.sty)
 \topmargin 0pt
History
Date User Action Args
2008-10-21 21:59:22efiringsetrecipients: + efiring, georg.brandl
2008-10-21 21:59:22efiringsetmessageid: <1224626362.8.0.706164926632.issue4166@psf.upfronthosting.co.za>
2008-10-21 21:59:22efiringlinkissue4166 messages
2008-10-21 21:59:21efiringcreate