changeset 27266 | 4dccc37b87bd |
parent 27264 | e07003a94ef3 |
child 27292 | 14a83e8e1b88 |
--- a/mercurial/commands.py Sun Dec 06 12:31:46 2015 -0800 +++ b/mercurial/commands.py Sat Dec 05 21:11:04 2015 -0800 @@ -5364,6 +5364,8 @@ else: ui.write("%s = %s\n" % (name, util.hidepassword(path.loc))) + for subopt, value in sorted(path.suboptions.items()): + ui.write('%s:%s = %s\n' % (name, subopt, value)) @command('phase', [('p', 'public', False, _('set changeset phase to public')),