mercurial/commands.py
branchstable
changeset 27320 59d5f619e69e
parent 26959 ed5f20f9c22e
child 27329 944af8e2eb4c
child 27555 ca8ada499529
--- 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')),