From patchwork Tue Dec 17 08:52:10 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7682: patch: make __repr__() return str From: phabricator X-Patchwork-Id: 43913 Message-Id: <23839c5f3489cfe67b1ac6502febb25a@localhost.localdomain> To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Tue, 17 Dec 2019 08:52:10 +0000 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 To: mharbison72, #hg-reviewers, pulkit, dlax Cc: dlax, mercurial-devel 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'
' % (b' '.join(map(repr, self.files()))) + return '
' % (' '.join(map(repr, self.files()))) def isnewfile(self): return any(self.newfile_re.match(h) for h in self.header)