Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 32329:770bbfdc9644
py3: convert kwargs' keys to str using pycompat.strkwargs
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Thu, 04 May 2017 00:24:21 +0530 |
parents | e4a4ebfd9d8e |
children | bd872f64a8ba |
line wrap: on
line diff
--- 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']: