summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Tenart2019-03-26 18:13:20 +0100
committerAntoine Tenart2019-03-26 18:16:03 +0100
commitc8602b8c7e4e6a2686b02f1410f7bc71e25da470 (patch)
treef01983a982a7e0f5288500ebd048303a15580b49
parentb4b150a4f56d4fc0b6240e6a4b4537a89b11c49a (diff)
mat2: display the default choice of --unknown-members in the help
Signed-off-by: Antoine Tenart <antoine.tenart@ack.tf>
-rwxr-xr-xmat22
1 files changed, 1 insertions, 1 deletions
diff --git a/mat2 b/mat2
index 7e166e4..8c192e2 100755
--- a/mat2
+++ b/mat2
@@ -50,7 +50,7 @@ def create_arg_parser() -> argparse.ArgumentParser:
50 help='show more verbose status information') 50 help='show more verbose status information')
51 parser.add_argument('--unknown-members', metavar='policy', default='abort', 51 parser.add_argument('--unknown-members', metavar='policy', default='abort',
52 help='how to handle unknown members of archive-style files (policy should' + 52 help='how to handle unknown members of archive-style files (policy should' +
53 ' be one of: %s)' % ', '.join(p.value for p in UnknownMemberPolicy)) 53 ' be one of: %s) [Default: abort]' % ', '.join(p.value for p in UnknownMemberPolicy))
54 54
55 55
56 info = parser.add_mutually_exclusive_group() 56 info = parser.add_mutually_exclusive_group()