diff options
| author | Antoine Tenart | 2020-02-27 10:24:16 +0100 |
|---|---|---|
| committer | Antoine Tenart | 2020-02-27 10:25:29 +0100 |
| commit | 843c0d8cc5bb2bae032e2746642e191d93fb1546 (patch) | |
| tree | 84844fcac587b055a1bb7dbe97fd1415471fa031 | |
| parent | 56d2c4aa5fea506abb15d71b53aea23b9dd3398b (diff) | |
mat2: standardize the help messages format
This is a cosmetic patch only.
Signed-off-by: Antoine Tenart <antoine.tenart@ack.tf>
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 | ||||
| -rwxr-xr-x | mat2 | 2 |
2 files changed, 2 insertions, 2 deletions
| @@ -80,7 +80,7 @@ optional arguments: | |||
| 80 | (policy should be one of: abort, omit, keep) [Default: | 80 | (policy should be one of: abort, omit, keep) [Default: |
| 81 | abort] | 81 | abort] |
| 82 | --inplace clean in place, without backup | 82 | --inplace clean in place, without backup |
| 83 | --no-sandbox Disable bubblewrap's sandboxing. | 83 | --no-sandbox Disable bubblewrap's sandboxing |
| 84 | -v, --version show program's version number and exit | 84 | -v, --version show program's version number and exit |
| 85 | -l, --list list all supported fileformats | 85 | -l, --list list all supported fileformats |
| 86 | --check-dependencies check if mat2 has all the dependencies it needs | 86 | --check-dependencies check if mat2 has all the dependencies it needs |
| @@ -57,7 +57,7 @@ def create_arg_parser() -> argparse.ArgumentParser: | |||
| 57 | parser.add_argument('--inplace', action='store_true', | 57 | parser.add_argument('--inplace', action='store_true', |
| 58 | help='clean in place, without backup') | 58 | help='clean in place, without backup') |
| 59 | parser.add_argument('--no-sandbox', dest='sandbox', action='store_true', | 59 | parser.add_argument('--no-sandbox', dest='sandbox', action='store_true', |
| 60 | default=False, help='Disable bubblewrap\'s sandboxing.') | 60 | default=False, help='Disable bubblewrap\'s sandboxing') |
| 61 | 61 | ||
| 62 | excl_group = parser.add_mutually_exclusive_group() | 62 | excl_group = parser.add_mutually_exclusive_group() |
| 63 | excl_group.add_argument('files', nargs='*', help='the files to process', | 63 | excl_group.add_argument('files', nargs='*', help='the files to process', |
