evolve: fix stabilize --any short option
authorPatrick Mezard <patrick@mezard.eu>
Wed, 06 Jun 2012 16:13:44 +0200
changeset 260 fd3db1e6b7a3
parent 259 9886034199af
child 261 240b37998806
child 262 4675d9c6c66b
child 289 9bb4217ddfce
evolve: fix stabilize --any short option It was displayed as --A instead of -A.
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):