# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1493837661 -19800 # Node ID 770bbfdc9644b7261bf2c2c28300f19c2c61176e # Parent a2ab9ebcd85b09e33d3036ceccb2dff6f6353e79 py3: convert kwargs' keys to str using pycompat.strkwargs diff -r a2ab9ebcd85b -r 770bbfdc9644 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Sun May 14 09:38:06 2017 -0700 +++ b/mercurial/cmdutil.py Thu May 04 00:24:21 2017 +0530 @@ -1496,6 +1496,7 @@ props['index'] = next(self._counter) props['revcache'] = {'copies': copies} props['cache'] = self.cache + props = pycompat.strkwargs(props) # write header if self._parts['header']: