From 9997aa9a9211dfaf1bcfeb963cde0129fd8ea26d Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 8 Feb 2022 15:58:09 -0800 Subject: [PATCH] Fix capitalization on compact 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 5f6a75681..53537dc81 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -262,8 +262,8 @@ def parse_arguments(*unparsed_arguments): compact_parser = subparsers.add_parser( 'compact', aliases=SUBPARSER_ALIASES['compact'], - help='compact segments to free space (Borg 1.2+ only)', - description='compact segments to free space (Borg 1.2+ only)', + help='Compact segments to free space (Borg 1.2+ only)', + description='Compact segments to free space (Borg 1.2+ only)', add_help=False, ) compact_group = compact_parser.add_argument_group('compact arguments')