From ea45a37db88da33e7bab1b7d6626c24c453d0e9f Mon Sep 17 00:00:00 2001 From: Tim Ruffing Date: Tue, 18 Nov 2025 09:55:54 +0100 Subject: [PATCH] Omit "-c" when describing default value for -c --- 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 c51adc3b..40b540f9 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -581,7 +581,7 @@ def make_parsers(schema, unparsed_arguments): # noqa: PLR0915 '--config', dest='config_paths', action='append', - help='Configuration filename or directory, can specify flag multiple times, defaults to "-c \'/etc/borgmatic/config.yaml\' -c \'/etc/borgmatic.d\' -c \'$XDG_CONFIG_HOME/borgmatic/config.yaml\' -c \'$XDG_CONFIG_HOME/borgmatic.d\'", where $XDG_CONFIG_HOME defaults to "$HOME/.config"', + help='Configuration filename or directory, can specify flag multiple times, defaults to /etc/borgmatic/config.yaml, /etc/borgmatic.d, $XDG_CONFIG_HOME/borgmatic/config.yaml, and $XDG_CONFIG_HOME/borgmatic.d, where $XDG_CONFIG_HOME defaults to $HOME/.config', ) global_group.add_argument( '-n',