From ae45dfe63a2a1e0927cb33b76a14a28c862bcc4b Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 19 Sep 2019 15:20:05 -0700 Subject: [PATCH] Clarify command-like help for check --only. --- borgmatic/commands/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgmatic/commands/arguments.py b/borgmatic/commands/arguments.py index b9f78186..7543ec9f 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -218,7 +218,7 @@ def parse_arguments(*unparsed_arguments): choices=('repository', 'archives', 'data', 'extract'), dest='only', action='append', - help='Run a particular consistency check instead of configured checks (can specify multiple times)', + help='Run a particular consistency check (repository, archives, data, or extract) instead of configured checks; can specify flag multiple times', ) check_group.add_argument('-h', '--help', action='help', help='Show this help message and exit')