Skip to content

Commit

Permalink
Fix code in titles of TOC entries (pandas-dev#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche authored Sep 16, 2019
1 parent 00dbb35 commit b4c3d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas-docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def convert_docutils_node(list_item):
if not list_item.children:
return None
reference = list_item.children[0].children[0]
title = reference.children[0].astext()
title = reference.astext()
url = reference.attributes['refuri']
active = 'current' in list_item.attributes['classes']

Expand Down

0 comments on commit b4c3d7d

Please sign in to comment.