##// END OF EJS Templates
py3: convert kwargs' keys to str using pycompat.strkwargs
Pulkit Goyal -
r32289:770bbfdc default
parent child Browse files
Show More
@@ -1496,6 +1496,7 b' class changeset_templater(changeset_prin'
1496 props['index'] = next(self._counter)
1496 props['index'] = next(self._counter)
1497 props['revcache'] = {'copies': copies}
1497 props['revcache'] = {'copies': copies}
1498 props['cache'] = self.cache
1498 props['cache'] = self.cache
1499 props = pycompat.strkwargs(props)
1499
1500
1500 # write header
1501 # write header
1501 if self._parts['header']:
1502 if self._parts['header']:
General Comments 0
You need to be logged in to leave comments. Login now