scripts/runner.py: put command group descriptions in parens

This commit is contained in:
Brian Warner
2015-05-26 08:11:44 -07:00
parent 1c34cbd627
commit 5d5fa05a42

View File

@ -12,7 +12,7 @@ def GROUP(s):
# Usage.parseOptions compares argv[1] against command[0], so it will
# effectively ignore any "subcommand" that starts with a newline. We use
# these to insert section headers into the --help output.
return [("\n" + s, None, None, None)]
return [("\n(%s)" % s, None, None, None)]
_default_nodedir = get_default_nodedir()