浏览代码

TODO about using the new exclude_patterns.

Dan Helfman 8 年之前
父节点
当前提交
fb172f018a
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      borgmatic/commands/borgmatic.py

+ 2 - 1
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
         )