On Feb 24, 2009, at 3:06 PM, Georg Brandl wrote:
>
> Hi Eric,
>
> it looks like numpy's extensions create their own toctree nodes, which
> don't have the new "numbered" attribute. I've now fixed this KeyError
> by making the attribute optional.
An alternative suggested offlist by Matt Knox is to replace in
environment.py the line 1051
refs = [(e[0], str(e[1])) for e in toctreenode['entries'])]
by
refs = [(e[0], str(e[1])) for e in toctreenode.get('entries', [])]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sphinx-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---