Submitter | phabricator |
---|---|
Date | Dec. 19, 2019, 5:58 p.m. |
Message ID | <3b977180bdd433551828870846290a2c@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43998/ |
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,9 @@ return self.files()[-1] def __repr__(self): - return '<header %s>' % (' '.join(map(repr, self.files()))) + return '<header %s>' % ( + ' '.join(pycompat.rapply(pycompat.fsdecode, self.files())) + ) def isnewfile(self): return any(self.newfile_re.match(h) for h in self.header)