mercurial/hgweb/webcommands.py
changeset 40292 9c6473d2038b
parent 40248 b24c23f7c1f9
child 40295 fa88170c10bb
--- 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 = [], []