Submitter | phabricator |
---|---|
Date | Dec. 17, 2019, 8:52 a.m. |
Message ID | <23839c5f3489cfe67b1ac6502febb25a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43913/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -963,7 +963,7 @@ return self.files()[-1] def __repr__(self): - return b'<header %s>' % (b' '.join(map(repr, self.files()))) + return '<header %s>' % (' '.join(map(repr, self.files()))) def isnewfile(self): return any(self.newfile_re.match(h) for h in self.header)