Submitter | phabricator |
---|---|
Date | Nov. 20, 2018, 12:27 p.m. |
Message ID | <8ee26609330e8f0fe34fdbb4b4778548@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/36666/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/fastannotate/context.py b/hgext/fastannotate/context.py --- a/hgext/fastannotate/context.py +++ b/hgext/fastannotate/context.py @@ -156,6 +156,7 @@ } def __init__(self, **opts): + opts = pycompat.byteskwargs(opts) for k, v in self.defaults.iteritems(): setattr(self, k, opts.get(k, v))