# 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 --git a/hgext/evolve.py b/hgext/evolve.py --- a/hgext/evolve.py +++ b/hgext/evolve.py @@ -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):