Submitter | phabricator |
---|---|
Date | Jan. 16, 2019, 5:22 p.m. |
Message ID | <4052598f736ad4b4c087fbd34d4dc73a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/37830/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/fastannotate/formatter.py b/hgext/fastannotate/formatter.py --- a/hgext/fastannotate/formatter.py +++ b/hgext/fastannotate/formatter.py @@ -128,7 +128,7 @@ if annotatedresult: self._writecomma() - pieces = [(name, map(f, annotatedresult)) + pieces = [(name, pycompat.maplist(f, annotatedresult)) for f, sep, name, enc in self.funcmap] if lines is not None: pieces.append(('line', lines))