diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-05-24 11:27:20 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-05-24 11:27:20 +0900 |
commit | b4df9180719532ac692962513b03188d7ed908b8 (patch) | |
tree | c667241fff782e980cf31ee9c67043eb2172f9bc /sphinx/builders/devhelp.py | |
parent | 37882b9c778308cddca2e26be73b535df69f05f8 (diff) | |
download | sphinx-git-b4df9180719532ac692962513b03188d7ed908b8.tar.gz |
Fix #2558: unpack error on devhelp builder
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r-- | sphinx/builders/devhelp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py index 5ebaf2dc5..62e2c9843 100644 --- a/sphinx/builders/devhelp.py +++ b/sphinx/builders/devhelp.py @@ -123,7 +123,7 @@ class DevhelpBuilder(StandaloneHTMLBuilder): subitem[1], []) for (key, group) in index: - for title, (refs, subitems) in group: + for title, (refs, subitems, key) in group: write_index(title, refs, subitems) # Dump the XML file |