Submitter | phabricator |
---|---|
Date | Jan. 14, 2018, 7:36 p.m. |
Message ID | <22d46f7b30aea56f377d2855b59a12ee@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/26743/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/convert/git.py b/hgext/convert/git.py --- a/hgext/convert/git.py +++ b/hgext/convert/git.py @@ -342,13 +342,15 @@ p = v.split() tm, tz = p[-2:] author = " ".join(p[:-2]) - if author[0] == "<": author = author[1:-1] + if author[0] == "<": + author = author[1:-1] author = self.recode(author) if n == "committer": p = v.split() tm, tz = p[-2:] committer = " ".join(p[:-2]) - if committer[0] == "<": committer = committer[1:-1] + if committer[0] == "<": + committer = committer[1:-1] committer = self.recode(committer) if n == "parent": parents.append(v)