# HG changeset patch # User Patrick Mezard # Date 1338992024 -7200 # Node ID fd3db1e6b7a3d052ec20297905a180cc71f70c13 # Parent 9886034199af1bf34599345c00a37430d4c6ecc4 evolve: fix stabilize --any short option It was displayed as --A instead of -A. diff -r 9886034199af -r fd3db1e6b7a3 hgext/evolve.py --- 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):