# HG changeset patch # User Yuya Nishihara # Date 2015-12-13 12:54:00 # Node ID c36fa631cb6ebfc1549127ab7f1d5cd542908283 # Parent edd2615ad226c14f6904fc1738c3dc36431db223 paths: drop ui.status label from output of "hg paths name" We just need to not print path if --quiet. ui.status label is unwanted. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5400,7 +5400,8 @@ def paths(ui, repo, search=None): if search: for name, path in sorted(ui.paths.iteritems()): if name == search: - ui.status("%s\n" % util.hidepassword(path.rawloc)) + if not ui.quiet: + ui.write("%s\n" % util.hidepassword(path.rawloc)) return if not ui.quiet: ui.warn(_("not found!\n"))