diff options
author | Georg Brandl <georg@python.org> | 2014-03-09 09:22:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-09 09:22:10 (GMT) |
commit | e46abb42deeffd535e926337a1507f604252a816 (patch) | |
tree | 1740e71dbf8575a256f5f0f6e3349b32d6b147d4 /Tools/hg | |
parent | 95b696a01008923854b64a8adeb049844679043e (diff) | |
download | cpython-e46abb42deeffd535e926337a1507f604252a816.zip cpython-e46abb42deeffd535e926337a1507f604252a816.tar.gz cpython-e46abb42deeffd535e926337a1507f604252a816.tar.bz2 |
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).
Diffstat (limited to 'Tools/hg')
-rw-r--r-- | Tools/hg/hgtouch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/hg/hgtouch.py b/Tools/hg/hgtouch.py index cd990b3..119d812 100644 --- a/Tools/hg/hgtouch.py +++ b/Tools/hg/hgtouch.py @@ -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]") } |