D7682: patch: make __repr__() return str
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Tue Dec 17 08:52:10 UTC 2019
Closed by commit rHG727cf6acadfe: patch: make __repr__() return str (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7682?vs=18786&id=18802
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7682/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7682
AFFECTED FILES
mercurial/patch.py
CHANGE DETAILS
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)
To: mharbison72, #hg-reviewers, pulkit, dlax
Cc: dlax, mercurial-devel
More information about the Mercurial-devel
mailing list