]> granicus.if.org Git - python/commitdiff
hgtouch: remove meta-variable from option spec
authorGeorg Brandl <georg@python.org>
Sun, 9 Mar 2014 09:22:10 +0000 (10:22 +0100)
committerGeorg Brandl <georg@python.org>
Sun, 9 Mar 2014 09:22:10 +0000 (10:22 +0100)
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).

Tools/hg/hgtouch.py

index cd990b326d155c20c668f913fd60bf25e0eb12a0..119d81214826f62d812a8b923432da783d321859 100644 (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]")
 }