# HG changeset patch # User Yuya Nishihara # Date 2018-04-04 11:37:52 # Node ID 53cc81a8caf6106ca0cb7ae1d67586236c3bf4fc # Parent 220058198be6a647f1fa228ad47792104076e495 hgweb: wrap {entries}* of filelog with mappinglist They were lists of mappings. diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -1129,10 +1129,10 @@ def filelog(web): file=f, nav=nav, symrev=webutil.symrevorshortnode(web.req, fctx), - entries=entries, + entries=templateutil.mappinglist(entries), descend=descend, patch=patch, - latestentry=latestentry, + latestentry=templateutil.mappinglist(latestentry), linerange=linerange, revcount=revcount, morevars=morevars,