##// END OF EJS Templates
paths: drop ui.status label from output of "hg paths name"...
Yuya Nishihara -
r27724:c36fa631 default
parent child Browse files
Show More
@@ -5400,7 +5400,8 b' def paths(ui, repo, search=None):'
5400 5400 if search:
5401 5401 for name, path in sorted(ui.paths.iteritems()):
5402 5402 if name == search:
5403 ui.status("%s\n" % util.hidepassword(path.rawloc))
5403 if not ui.quiet:
5404 ui.write("%s\n" % util.hidepassword(path.rawloc))
5404 5405 return
5405 5406 if not ui.quiet:
5406 5407 ui.warn(_("not found!\n"))
General Comments 0
You need to be logged in to leave comments. Login now