From 6a7f71f92f46c42a4796b89df67a08a6777954b0 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 3 Jan 2024 10:03:35 -0800 Subject: [PATCH] Clarify prune action help concerning running compact afterwards (#808). --- 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 ee0dca9f..00416b84 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -467,8 +467,8 @@ def make_parsers(): prune_parser = action_parsers.add_parser( 'prune', aliases=ACTION_ALIASES['prune'], - help='Prune archives according to the retention policy (with Borg 1.2+, run compact afterwards to actually free space)', - description='Prune archives according to the retention policy (with Borg 1.2+, run compact afterwards to actually free space)', + help='Prune archives according to the retention policy (with Borg 1.2+, you must run compact afterwards to actually free space)', + description='Prune archives according to the retention policy (with Borg 1.2+, you must run compact afterwards to actually free space)', add_help=False, ) prune_group = prune_parser.add_argument_group('prune arguments')