Mercurial > public > mercurial-scm > evolve
diff hgext/evolve.py @ 260:fd3db1e6b7a3
evolve: fix stabilize --any short option
It was displayed as --A instead of -A.
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Wed, 06 Jun 2012 16:13:44 +0200 |
parents | 8337bb3bb958 |
children | de62daaf2054 |
line wrap: on
line diff
--- a/hgext/evolve.py Tue Jun 05 22:24:24 2012 +0200 +++ b/hgext/evolve.py Wed Jun 06 16:13:44 2012 +0200 @@ -191,7 +191,7 @@ @command('^stabilize', [ ('n', 'dry-run', False, 'Do nothing but printing what should be done'), - ('-A', 'any', False, 'Stabilize unstable change on any topological branch'), + ('A', 'any', False, 'Stabilize unstable change on any topological branch'), ], '') def stabilize(ui, repo, **opts):