mercurial/commands.py
changeset 27266 4dccc37b87bd
parent 27264 e07003a94ef3
child 27292 14a83e8e1b88
equal deleted inserted replaced
27265:47539ea08bdb 27266:4dccc37b87bd
  5362             if ui.quiet:
  5362             if ui.quiet:
  5363                 ui.write("%s\n" % name)
  5363                 ui.write("%s\n" % name)
  5364             else:
  5364             else:
  5365                 ui.write("%s = %s\n" % (name,
  5365                 ui.write("%s = %s\n" % (name,
  5366                                         util.hidepassword(path.loc)))
  5366                                         util.hidepassword(path.loc)))
       
  5367                 for subopt, value in sorted(path.suboptions.items()):
       
  5368                     ui.write('%s:%s = %s\n' % (name, subopt, value))
  5367 
  5369 
  5368 @command('phase',
  5370 @command('phase',
  5369     [('p', 'public', False, _('set changeset phase to public')),
  5371     [('p', 'public', False, _('set changeset phase to public')),
  5370      ('d', 'draft', False, _('set changeset phase to draft')),
  5372      ('d', 'draft', False, _('set changeset phase to draft')),
  5371      ('s', 'secret', False, _('set changeset phase to secret')),
  5373      ('s', 'secret', False, _('set changeset phase to secret')),