diff options
Diffstat (limited to 'sphinx/builders/htmlhelp.py')
-rw-r--r-- | sphinx/builders/htmlhelp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/builders/htmlhelp.py b/sphinx/builders/htmlhelp.py index 9a21fb15b..f4003c4c9 100644 --- a/sphinx/builders/htmlhelp.py +++ b/sphinx/builders/htmlhelp.py @@ -6,7 +6,7 @@ Build HTML help support files. Parts adapted from Python's Doc/tools/prechm.py. - :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from __future__ import print_function @@ -299,7 +299,7 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder): write_index(subitem[0], subitem[1], []) f.write('</UL>') for (key, group) in index: - for title, (refs, subitems) in group: + for title, (refs, subitems, key_) in group: write_index(title, refs, subitems) f.write('</UL>\n') finally: |