diff -r 170926caf44c -r 9c6473d2038b mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Sat Oct 13 05:03:50 2018 -0700 +++ b/mercurial/hgweb/webcommands.py Fri Oct 12 17:57:36 2018 +0200 @@ -1407,7 +1407,8 @@ topicname = web.req.qsparams.get('node') if not topicname: def topics(context): - for entries, summary, _doc in helpmod.helptable: + for h in helpmod.helptable: + entries, summary, _doc = h[0:3] yield {'topic': entries[0], 'summary': summary} early, other = [], []