From: Georg Brandl Date: Sun, 9 Mar 2014 09:22:10 +0000 (+0100) Subject: hgtouch: remove meta-variable from option spec X-Git-Tag: v3.4.1rc1~233^2~112^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e46abb42deeffd535e926337a1507f604252a816;p=python 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). --- diff --git a/Tools/hg/hgtouch.py b/Tools/hg/hgtouch.py index cd990b326d..119d812148 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]") }