changeset 32289: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 a2ab9ebcd85b
children 2959c3e986e0
files mercurial/cmdutil.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
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']: