# HG changeset patch # User Matt Harbison # Date 1509853194 14400 # Node ID 527655a049ee81911fba16cd99750d12ac41d691 # Parent 705d0f2bb677b55d98096e40e56ead86fc3d102c morestatus: don't crash with different drive letters for repo.root and CWD Previously, if there were unresolved files and the CWD drive was different from the repo drive, `hg status -v` would page the normal status, followed by the exception header. A stacktrace was waiting when the pager exited. The underlying cause was the same as f445b10dc7fb. Unfortunately, I don't see any reasonable way to write a test this [1]. [1] https://www.mercurial-scm.org/pipermail/mercurial-devel/2017-November/107401.html diff -r 705d0f2bb677 -r 527655a049ee mercurial/cmdutil.py --- a/mercurial/cmdutil.py Fri Nov 03 22:22:50 2017 -0400 +++ b/mercurial/cmdutil.py Sat Nov 04 23:39:54 2017 -0400 @@ -570,9 +570,8 @@ unresolvedlist = [f for f in mergestate.unresolved() if m(f)] if unresolvedlist: mergeliststr = '\n'.join( - [' %s' % os.path.relpath( - os.path.join(repo.root, path), - pycompat.getcwd()) for path in unresolvedlist]) + [' %s' % util.pathto(repo.root, pycompat.getcwd(), path) + for path in unresolvedlist]) msg = _('''Unresolved merge conflicts: %s