From fb172f018aeedfa7984b3b6ea201425b719b57d5 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Mon, 10 Jul 2017 16:26:32 -0700 Subject: [PATCH] TODO about using the new exclude_patterns. --- borgmatic/commands/borgmatic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/borgmatic/commands/borgmatic.py b/borgmatic/commands/borgmatic.py index 33b156ae4..c2083d969 100644 --- a/borgmatic/commands/borgmatic.py +++ b/borgmatic/commands/borgmatic.py @@ -28,7 +28,7 @@ def parse_arguments(*arguments): parser.add_argument( '--excludes', dest='excludes_filename', - help='Excludes filename, deprecated in favor of excludes_patterns within configuration', + help='Excludes filename, deprecated in favor of exclude_patterns within configuration', ) parser.add_argument( '-v', '--verbosity', @@ -48,6 +48,7 @@ def main(): # pragma: no cover remote_path = config.location['remote_path'] borg.initialize(config.storage) + # TODO: Use the new exclude_patterns. borg.create_archive( args.excludes_filename, args.verbosity, config.storage, **config.location )