Skip to content
Snippets Groups Projects
Commit 843c0d8c authored by atenart's avatar atenart
Browse files

mat2: standardize the help messages format


This is a cosmetic patch only.

Signed-off-by: default avatarAntoine Tenart <antoine.tenart@ack.tf>
parent 56d2c4aa
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,7 @@ optional arguments: ...@@ -80,7 +80,7 @@ optional arguments:
(policy should be one of: abort, omit, keep) [Default: (policy should be one of: abort, omit, keep) [Default:
abort] abort]
--inplace clean in place, without backup --inplace clean in place, without backup
--no-sandbox Disable bubblewrap's sandboxing. --no-sandbox Disable bubblewrap's sandboxing
-v, --version show program's version number and exit -v, --version show program's version number and exit
-l, --list list all supported fileformats -l, --list list all supported fileformats
--check-dependencies check if mat2 has all the dependencies it needs --check-dependencies check if mat2 has all the dependencies it needs
......
...@@ -57,7 +57,7 @@ def create_arg_parser() -> argparse.ArgumentParser: ...@@ -57,7 +57,7 @@ def create_arg_parser() -> argparse.ArgumentParser:
parser.add_argument('--inplace', action='store_true', parser.add_argument('--inplace', action='store_true',
help='clean in place, without backup') help='clean in place, without backup')
parser.add_argument('--no-sandbox', dest='sandbox', action='store_true', parser.add_argument('--no-sandbox', dest='sandbox', action='store_true',
default=False, help='Disable bubblewrap\'s sandboxing.') default=False, help='Disable bubblewrap\'s sandboxing')
excl_group = parser.add_mutually_exclusive_group() excl_group = parser.add_mutually_exclusive_group()
excl_group.add_argument('files', nargs='*', help='the files to process', excl_group.add_argument('files', nargs='*', help='the files to process',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment