diff -r 30a7b32897f1 -r cb7b275c0cd0 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Sun Apr 01 22:11:58 2018 +0900 +++ b/mercurial/hgweb/hgweb_mod.py Sun Apr 01 22:14:36 2018 +0900 @@ -31,6 +31,7 @@ repoview, templatefilters, templater, + templateutil, ui as uimod, util, wireprotoserver, @@ -80,7 +81,7 @@ break breadcrumb.append({'url': urlel, 'name': pathel}) urlel = os.path.dirname(urlel) - return reversed(breadcrumb) + return templateutil.mappinglist(reversed(breadcrumb)) class requestcontext(object): """Holds state/context for an individual request.