py3: convert kwargs' keys to str using pycompat.strkwargs

This commit is contained in:
Pulkit Goyal 2017-05-04 00:24:21 +05:30
parent ac08ec9cb1
commit edb3048605

View File

@ -1496,6 +1496,7 @@ class changeset_templater(changeset_printer):
props['index'] = next(self._counter)
props['revcache'] = {'copies': copies}
props['cache'] = self.cache
props = pycompat.strkwargs(props)
# write header
if self._parts['header']: