hgtouch: remove meta-variable from option spec

This fifth tuple element is unsupported in an old hg version still used on
one buildbot, and it is not really necessary (only used in touch --help).
This commit is contained in:
Georg Brandl 2014-03-09 10:22:10 +01:00
parent 95b696a010
commit e46abb42de
1 changed files with 1 additions and 1 deletions

View File

@ -125,6 +125,6 @@ def touch(ui, repo, basedir):
cmdtable = {
"touch": (touch,
[('b', 'basedir', '', 'base dir of the tree to apply touching', 'BASEDIR')],
[('b', 'basedir', '', 'base dir of the tree to apply touching')],
"hg touch [-b BASEDIR]")
}