From 5d5fa05a4227ba5429e5e417af17b2447d2c043e Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 26 May 2015 08:11:44 -0700 Subject: [PATCH] scripts/runner.py: put command group descriptions in parens --- src/allmydata/scripts/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/scripts/runner.py b/src/allmydata/scripts/runner.py index 1a6de258..f295a980 100644 --- a/src/allmydata/scripts/runner.py +++ b/src/allmydata/scripts/runner.py @@ -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() -- 2.37.2