# HG changeset patch # User Yuya Nishihara # Date 1522841872 -32400 # Node ID 53cc81a8caf6106ca0cb7ae1d67586236c3bf4fc # Parent 220058198be6a647f1fa228ad47792104076e495 hgweb: wrap {entries}* of filelog with mappinglist They were lists of mappings. diff -r 220058198be6 -r 53cc81a8caf6 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Wed Apr 04 20:37:03 2018 +0900 +++ b/mercurial/hgweb/webcommands.py Wed Apr 04 20:37:52 2018 +0900 @@ -1129,10 +1129,10 @@ 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,