Submitter | phabricator |
---|---|
Date | May 8, 2018, 7:27 p.m. |
Message ID | <differential-rev-PHID-DREV-fcbayceujxfudjr57bg2-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/31408/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py --- a/mercurial/scmutil.py +++ b/mercurial/scmutil.py @@ -104,8 +104,10 @@ return self[6] def __repr__(self, *args, **kwargs): - return (('<status modified=%r, added=%r, removed=%r, deleted=%r, ' - 'unknown=%r, ignored=%r, clean=%r>') % self) + return ((r'<status modified=%s, added=%s, removed=%s, deleted=%s, ' + r'unknown=%s, ignored=%s, clean=%s>') % + tuple(pycompat.sysstr(stringutil.pprint( + v, bprefix=False)) for v in self)) def itersubrepos(ctx1, ctx2): """find subrepos in ctx1 or ctx2"""