From 603f5253528fa3a8fc88ad3a6765b6da53ba6e78 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 1 Nov 2019 10:50:20 -0700 Subject: [PATCH] Clarify --archive help. --- borgmatic/commands/arguments.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borgmatic/commands/arguments.py b/borgmatic/commands/arguments.py index 361c473f..c5f900f0 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -273,7 +273,7 @@ def parse_arguments(*unparsed_arguments): '--repository', help='Path of repository to extract, defaults to the configured repository if there is only one', ) - extract_group.add_argument('--archive', help='Name of archive to operate on', required=True) + extract_group.add_argument('--archive', help='Name of archive to extract, required=True) extract_group.add_argument( '--path', '--restore-path', @@ -311,7 +311,7 @@ def parse_arguments(*unparsed_arguments): '--repository', help='Path of repository to restore from, defaults to the configured repository if there is only one', ) - restore_group.add_argument('--archive', help='Name of archive to operate on', required=True) + restore_group.add_argument('--archive', help='Name of archive to restore from, required=True) restore_group.add_argument( '--database', metavar='NAME',