From cbfc0bead132c779ec9039ec04f17ef3d235561c Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 21 Mar 2025 09:56:42 -0700 Subject: [PATCH] Exclude --match-archives from global flags since it already exists on several actions (#303). --- 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 dc72535f..cb4bbcef 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -288,7 +288,7 @@ def parse_arguments_for_actions(unparsed_arguments, action_parsers, global_parse ) -OMITTED_FLAG_NAMES = {'progress', 'stats', 'list'} +OMITTED_FLAG_NAMES = {'match_archives', 'progress', 'stats', 'list'} def add_arguments_from_schema(arguments_group, schema, unparsed_arguments, names=None):