Skip to content
Snippets Groups Projects
Commit a8a7ccec authored by Augie Fackler's avatar Augie Fackler
Browse files

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
parent ea63a200
No related branches found
No related tags found
No related merge requests found
......@@ -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"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment