Skip to content

Commit b4df918

Browse files
committed
Fix #2558: unpack error on devhelp builder
1 parent 37882b9 commit b4df918

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Bugs fixed
6060
* #2470: ``typing`` backport package causes autodoc errors with python 2.7
6161
* ``sphinx.ext.intersphinx`` crashes if non-string value is used for key of `intersphinx_mapping`
6262
* #2518: `intersphinx_mapping` disallows non alphanumeric keys
63+
* #2558: unpack error on devhelp builder
6364

6465

6566
Release 1.4.1 (released Apr 12, 2016)

sphinx/builders/devhelp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def write_index(title, refs, subitems):
123123
subitem[1], [])
124124

125125
for (key, group) in index:
126-
for title, (refs, subitems) in group:
126+
for title, (refs, subitems, key) in group:
127127
write_index(title, refs, subitems)
128128

129129
# Dump the XML file

0 commit comments

Comments
 (0)