Mercurial > hg-stable
changeset 36308:0cacd4df6eb0
webcommands: use pycompat.strkwargs as needed
Differential Revision: https://phab.mercurial-scm.org/D2305
author | Augie Fackler <augie@google.com> |
---|---|
date | Sat, 17 Feb 2018 22:38:53 -0500 |
parents | a748a5d1d7c3 |
children | c95c8ab2e7ec |
files | mercurial/hgweb/webcommands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py Sat Feb 17 22:38:25 2018 -0500 +++ b/mercurial/hgweb/webcommands.py Sat Feb 17 22:38:53 2018 -0500 @@ -561,7 +561,7 @@ fentries=filelist, dentries=dirlist, archives=web.archivelist(hex(node)), - **webutil.commonentry(web.repo, ctx)) + **pycompat.strkwargs(webutil.commonentry(web.repo, ctx))) @webcommand('tags') def tags(web, req, tmpl):