# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2017-05-03 18:54:21 # Node ID 770bbfdc9644b7261bf2c2c28300f19c2c61176e # Parent a2ab9ebcd85b09e33d3036ceccb2dff6f6353e79 py3: convert kwargs' keys to str using pycompat.strkwargs diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1496,6 +1496,7 @@ class changeset_templater(changeset_prin props['index'] = next(self._counter) props['revcache'] = {'copies': copies} props['cache'] = self.cache + props = pycompat.strkwargs(props) # write header if self._parts['header']: