diff -r cea1473ba468 -r 59d5f619e69e mercurial/commands.py --- a/mercurial/commands.py Mon Dec 07 17:39:31 2015 +0100 +++ b/mercurial/commands.py Mon Dec 07 21:42:50 2015 +0900 @@ -5110,7 +5110,7 @@ if search: for name, path in sorted(ui.paths.iteritems()): if name == search: - ui.status("%s\n" % util.hidepassword(path.loc)) + ui.status("%s\n" % util.hidepassword(path.rawloc)) return if not ui.quiet: ui.warn(_("not found!\n")) @@ -5121,7 +5121,7 @@ ui.write("%s\n" % name) else: ui.write("%s = %s\n" % (name, - util.hidepassword(path.loc))) + util.hidepassword(path.rawloc))) @command('phase', [('p', 'public', False, _('set changeset phase to public')),