comparison mercurial/commands.py @ 211:426d3c3ae363

commands: fix up some help strings -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 commands: fix up some help strings manifest hash: e9e6061cd37d77e8061cab6a0cd3ca701e6900d7 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCngG/ywK+sNU5EO8RAnhCAJ422e7LecJ5D/15I5PcQZxGvsgvvQCeOWIb 7LTyyAYDeht6yOQCdLWmXIE= =bjQG -----END PGP SIGNATURE-----
author mpm@selenic.com
date Wed, 01 Jun 2005 10:43:11 -0800
parents d2badbd7d1ad
children 48398a5353e3
comparison
equal deleted inserted replaced
210:d2badbd7d1ad 211:426d3c3ae363
93 def undo(ui, repo, args): 93 def undo(ui, repo, args):
94 repo.undo() 94 repo.undo()
95 95
96 table = { 96 table = {
97 "init": (init, [], 'hg init'), 97 "init": (init, [], 'hg init'),
98 "help": (help, [], 'hg init'), 98 "help": (help, [], 'hg help'),
99 "checkout|co": (checkout, [], 'hg init'), 99 "checkout|co": (checkout, [], 'hg checkout'),
100 "ann|annotate": (annotate, 100 "ann|annotate": (annotate,
101 [('r', 'revision', '', 'revision'), 101 [('r', 'revision', '', 'revision'),
102 ('u', 'user', None, 'show user'), 102 ('u', 'user', None, 'show user'),
103 ('n', 'number', None, 'show revision number'), 103 ('n', 'number', None, 'show revision number'),
104 ('c', 'changeset', None, 'show changeset')], 104 ('c', 'changeset', None, 'show changeset')],