From bcbf80287cc7b62a713eb62f85cb8d16fb716359 Mon Sep 17 00:00:00 2001 From: Milkey Mouse Date: Sat, 15 Jul 2017 23:01:17 -0700 Subject: [PATCH] Add list of status chars to borg create --filter help text --- src/borg/archiver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/borg/archiver.py b/src/borg/archiver.py index f98f0297d..f0f327dd4 100644 --- a/src/borg/archiver.py +++ b/src/borg/archiver.py @@ -3469,8 +3469,8 @@ class Archiver: subparser.set_defaults(func=self.do_recreate) subparser.add_argument('--list', dest='output_list', action='store_true', help='output verbose list of items (files, dirs, ...)') - subparser.add_argument('--filter', dest='output_filter', metavar='STATUSCHARS', - help='only display items with the given status characters') + subparser.add_argument('--filter', metavar='STATUSCHARS', dest='output_filter', + help='only display items with the given status characters (listed in borg create --help)') subparser.add_argument('-n', '--dry-run', dest='dry_run', action='store_true', help='do not change anything') subparser.add_argument('-s', '--stats', dest='stats', action='store_true',