changeset 50914 | 1a242d4d2ac4 |
parent 50911 | e586a7eb380a |
child 50915 | d97227f42558 |
--- a/hgext/fastannotate/context.py Fri Sep 01 12:09:54 2023 +0200 +++ b/hgext/fastannotate/context.py Thu Aug 31 01:21:04 2023 +0200 @@ -170,13 +170,12 @@ """ defaults = { - b'diffopts': None, - b'followrename': True, - b'followmerge': True, + 'diffopts': None, + 'followrename': True, + 'followmerge': True, } def __init__(self, **opts): - opts = pycompat.byteskwargs(opts) for k, v in self.defaults.items(): setattr(self, k, opts.get(k, v))