changeset 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 9886034199af
children 240b37998806 4675d9c6c66b 9bb4217ddfce
files hgext/evolve.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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):