Mercurial > public > mercurial-scm > hg
diff hgext/gpg.py @ 16991:1aae34f109fd
consistency: use REV instead of REVISION
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 20 Jun 2012 16:49:04 +0200 |
parents | 7922004a46b8 |
children | 8b312c080adb |
line wrap: on
line diff
--- a/hgext/gpg.py Wed Jun 20 16:46:10 2012 +0200 +++ b/hgext/gpg.py Wed Jun 20 16:49:04 2012 +0200 @@ -164,7 +164,7 @@ r = "%5d:%s" % (rev, hgnode.hex(repo.changelog.node(rev))) ui.write("%-30s %s\n" % (keystr(ui, k), r)) -@command("sigcheck", [], _('hg sigcheck REVISION')) +@command("sigcheck", [], _('hg sigcheck REV')) def check(ui, repo, rev): """verify all the signatures there may be for a particular revision""" mygpg = newgpg(ui) @@ -206,7 +206,7 @@ ('m', 'message', '', _('commit message'), _('TEXT')), ] + commands.commitopts2, - _('hg sign [OPTION]... [REVISION]...')) + _('hg sign [OPTION]... [REV]...')) def sign(ui, repo, *revs, **opts): """add a signature for the current or given revision