Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/webutil.py @ 36464:1fb9e01328e4
py3: use pycompat.strkwargs to convert kwargs keys to str
Differential Revision: https://phab.mercurial-scm.org/D2452
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 26 Feb 2018 16:16:37 +0530 |
parents | af0a19d8812b |
children | 7937850a523d |
line wrap: on
line diff
--- a/mercurial/hgweb/webutil.py Mon Feb 26 01:01:35 2018 -0500 +++ b/mercurial/hgweb/webutil.py Mon Feb 26 16:16:37 2018 +0530 @@ -449,7 +449,7 @@ diffsummary=lambda **x: diffsummary(diffstatsgen), diffstat=diffstats, archives=web.archivelist(ctx.hex()), - **commonentry(web.repo, ctx)) + **pycompat.strkwargs(commonentry(web.repo, ctx))) def listfilediffs(tmpl, files, node, max): for f in files[:max]: