# HG changeset patch # User Augie Fackler # Date 2018-02-18 03:38:53 # Node ID 0cacd4df6eb086c4352ce0c3d1a4d6ab832f2375 # Parent a748a5d1d7c353ac30339deeaf8d08be14687bc1 webcommands: use pycompat.strkwargs as needed Differential Revision: https://phab.mercurial-scm.org/D2305 diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -561,7 +561,7 @@ def manifest(web, req, tmpl): 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):