aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2015-01-05 18:28:53 +0000
committerAdam Spiers <git@adamspiers.org>2015-01-05 18:28:53 +0000
commite40600230d1c3059485437bd4d5690d61c9edb2f (patch)
tree10560bcfa1f6e29dde42f818e24d4d8cc2dc82f7
parent54bab10d75e84eeb71061d580f54c635edda2419 (diff)
downloadgit-deps-e40600230d1c3059485437bd4d5690d61c9edb2f.tar.gz
don't show "[False]" default for boolean options
-rwxr-xr-xgit-deps6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-deps b/git-deps
index c3c2b64..3359033 100755
--- a/git-deps
+++ b/git-deps
@@ -411,9 +411,9 @@ def parse_args():
usage='%(prog)s [options] COMMIT-ISH [COMMIT-ISH...]'
)
parser.add_argument('-l', '--log', dest='log', action='store_true',
- help='Show commit logs for calculated dependencies [%(default)s]')
+ help='Show commit logs for calculated dependencies')
parser.add_argument('-r', '--recurse', dest='recurse', action='store_true',
- help='Follow dependencies recursively [%(default)s]')
+ help='Follow dependencies recursively')
parser.add_argument('-e', '--exclude-commits', dest='exclude_commits',
action='append', metavar='COMMITISH',
help='Exclude commits which are ancestors of the given COMMITISH'
@@ -422,7 +422,7 @@ def parse_args():
metavar='NUM', default=1,
help='Number of lines of diff context to use [%(default)s]')
parser.add_argument('-d', '--debug', dest='debug', action='store_true',
- help='Show debugging [%(default)s]')
+ help='Show debugging')
options, args = parser.parse_known_args()