# HG changeset patch # User Matt Harbison # Date 1417752507 18000 # Node ID 94091ab9d112d704a848f105f7a49d78663f9f46 # Parent 88d2d77eb981331c94daee970c18346fb4d300e1 addremove: restore the relative path printing when files are named This fixes the previously mentioned issue with 3778884197f0, and undoes its corresponding test change. The test change demonstrates the correctness when a file is specified (i.e. the glob is required on Windows because relative paths use '\' and absolute paths use '/'). It is admittedly very subtle, but there will be a more robust test in the addremove -S v3 series. diff -r 88d2d77eb981 -r 94091ab9d112 mercurial/scmutil.py --- a/mercurial/scmutil.py Thu Dec 04 23:04:55 2014 -0500 +++ b/mercurial/scmutil.py Thu Dec 04 23:08:27 2014 -0500 @@ -730,11 +730,10 @@ toprint.update(deleted) for abs in sorted(toprint): if repo.ui.verbose or not m.exact(abs): - rel = m.rel(abs) if abs in unknownset: - status = _('adding %s\n') % ((m.anypats() and rel) or abs) + status = _('adding %s\n') % m.uipath(abs) else: - status = _('removing %s\n') % ((m.anypats() and rel) or abs) + status = _('removing %s\n') % m.uipath(abs) repo.ui.status(status) renames = _findrenames(repo, m, added + unknown, removed + deleted, diff -r 88d2d77eb981 -r 94091ab9d112 tests/test-addremove-similar.t --- a/tests/test-addremove-similar.t Thu Dec 04 23:04:55 2014 -0500 +++ b/tests/test-addremove-similar.t Thu Dec 04 23:08:27 2014 -0500 @@ -91,7 +91,7 @@ no copies found here (since the target isn't in d $ hg addremove -s80 d - removing d/b + removing d/b (glob) copies here