Fix nesting of the numerical index (#12307).

This extra space caused the numerical index to be parsed and displayed as a
subsection of the index by category instead of being an element at the same
level.  Patch by Eric Snow.
This commit is contained in:
Éric Araujo 2011-11-25 17:43:36 +01:00
parent efd34dcbef
commit db7d5f7127
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ def write_pep0(peps, output=sys.stdout):
print>>output, unicode(pep)
print>>output
print>>output
print>>output, u" Numerical Index"
print>>output, u"Numerical Index"
print>>output
write_column_headers(output)
prev_pep = 0