scmutil: fix __repr__ of status tuple
We should probably start giving some thought to migrating the status
tuple to attrs, but not now.
Differential Revision: https://phab.mercurial-scm.org/D3508
--- a/mercurial/scmutil.py Mon May 07 19:43:43 2018 -0700
+++ b/mercurial/scmutil.py Fri Apr 27 11:49:49 2018 -0400
@@ -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"""