webcommands: use pycompat.strkwargs as needed
authorAugie Fackler <augie@google.com>
Sat, 17 Feb 2018 22:38:53 -0500
changeset 36308 0cacd4df6eb0
parent 36307 a748a5d1d7c3
child 36309 c95c8ab2e7ec
webcommands: use pycompat.strkwargs as needed Differential Revision: https://phab.mercurial-scm.org/D2305
mercurial/hgweb/webcommands.py
--- 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):