Mercurial > public > mercurial-scm > hg-stable
diff mercurial/verify.py @ 49922:d09a57ce6fc4
verify: print short `p1` node in relevant dirstate messages
This will help with debugging.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 21 Dec 2022 12:26:00 +0100 |
parents | c84844cd523a |
children | 521fec115dad |
line wrap: on
line diff
--- a/mercurial/verify.py Mon May 02 11:27:20 2022 +0200 +++ b/mercurial/verify.py Wed Dec 21 12:26:00 2022 +0100 @@ -612,7 +612,7 @@ is_narrow = requirements.NARROW_REQUIREMENT in repo.requirements narrow_matcher = repo.narrowmatch() if is_narrow else None - for err in repo.dirstate.verify(m1, m2, narrow_matcher): + for err in repo.dirstate.verify(m1, m2, parent1, narrow_matcher): ui.error(err) dirstate_errors += 1