1
0
Fork 0

mat2: display the default choice of --unknown-members in the help

Signed-off-by: Antoine Tenart <antoine.tenart@ack.tf>
This commit is contained in:
Antoine Tenart 2019-03-26 18:13:20 +01:00
parent b4b150a4f5
commit c8602b8c7e
1 changed files with 1 additions and 1 deletions

2
mat2
View File

@ -50,7 +50,7 @@ def create_arg_parser() -> argparse.ArgumentParser:
help='show more verbose status information')
parser.add_argument('--unknown-members', metavar='policy', default='abort',
help='how to handle unknown members of archive-style files (policy should' +
' be one of: %s)' % ', '.join(p.value for p in UnknownMemberPolicy))
' be one of: %s) [Default: abort]' % ', '.join(p.value for p in UnknownMemberPolicy))
info = parser.add_mutually_exclusive_group()