Mercurial > hg-stable
changeset 15849:513ca86b88ef
phase: lowercase option help, rephrase slightly
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Fri, 13 Jan 2012 11:23:45 +0100 |
parents | c47d69ce5208 |
children | 920433707a01 |
files | mercurial/commands.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Jan 11 09:27:53 2012 -0600 +++ b/mercurial/commands.py Fri Jan 13 11:23:45 2012 +0100 @@ -4216,9 +4216,9 @@ ui.write("%s = %s\n" % (name, util.hidepassword(path))) @command('^phase', - [('p', 'public', False, _('Set changeset to public')), - ('d', 'draft', False, _('Set changeset to draft')), - ('s', 'secret', False, _('Set changeset to secret')), + [('p', 'public', False, _('set changeset phase to public')), + ('d', 'draft', False, _('set changeset phase to draft')), + ('s', 'secret', False, _('set changeset phase to secret')), ('f', 'force', False, _('allow to move boundary backward')), ('r', 'rev', [], _('target revision')), ],