mercurial/hgweb/webcommands.py
changeset 38136 e4a43d261715
parent 38135 5e94d07b290a
child 38137 3e6253438bf9
--- a/mercurial/hgweb/webcommands.py	Wed Apr 04 20:21:29 2018 +0900
+++ b/mercurial/hgweb/webcommands.py	Wed Apr 04 20:24:04 2018 +0900
@@ -727,7 +727,7 @@
                 'date': web.repo[n].date(),
             }
 
-    def bookmarks(**map):
+    def bookmarks(context):
         parity = paritygen(web.stripecount)
         marks = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
         sortkey = lambda b: (web.repo[b[1]].rev(), b[0])
@@ -769,7 +769,7 @@
         owner=get_contact(web.config) or 'unknown',
         lastchange=tip.date(),
         tags=templateutil.mappinggenerator(tagentries, name='tagentry'),
-        bookmarks=bookmarks,
+        bookmarks=templateutil.mappinggenerator(bookmarks),
         branches=webutil.branchentries(web.repo, web.stripecount, 10),
         shortlog=templateutil.mappinggenerator(changelist,
                                                name='shortlogentry'),