diff mercurial/debugcommands.py @ 33102:1b6946f87c50

py3: use pycompat.strkwargs() to convert kwargs keys to str
author Pulkit Goyal <7895pulkit@gmail.com>
date Tue, 27 Jun 2017 00:23:32 +0530
parents b257aaa0743a
children 2f812b0d1936
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Tue Jun 27 00:15:56 2017 +0530
+++ b/mercurial/debugcommands.py	Tue Jun 27 00:23:32 2017 +0530
@@ -2165,7 +2165,7 @@
     else:
         displayer = cmdutil.makelogtemplater(ui, repo, tmpl)
         for r in revs:
-            displayer.show(repo[r], **props)
+            displayer.show(repo[r], **pycompat.strkwargs(props))
         displayer.close()
 
 @command('debugupdatecaches', [])