summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorjvoisin2018-05-15 23:27:58 +0200
committerjvoisin2018-05-15 23:27:58 +0200
commit7dd9e8bcdfe654c83d792cb93926de8633779e97 (patch)
tree0a1aaaf2f860c156daa2ad7d54a5f947e0021947 /main.py
parent1aac096786286a61db219d938f97fd34574cab43 (diff)
Clear a bit the help of the cli
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 2a3b4b5..f3d8d60 100755
--- a/main.py
+++ b/main.py
@@ -27,12 +27,12 @@ def create_arg_parser():
27 parser.add_argument('files', nargs='*') 27 parser.add_argument('files', nargs='*')
28 parser.add_argument('-v', '--version', action='version', 28 parser.add_argument('-v', '--version', action='version',
29 version='MAT2 %s' % __version__) 29 version='MAT2 %s' % __version__)
30 parser.add_argument('-l', '--list', action='store_true',
31 help='list all supported fileformats')
30 32
31 info = parser.add_argument_group('Information') 33 info = parser.add_argument_group('Information')
32 info.add_argument('-c', '--check', action='store_true', 34 info.add_argument('-c', '--check', action='store_true',
33 help='check if a file is free of harmful metadatas') 35 help='check if a file is free of harmful metadatas')
34 info.add_argument('-l', '--list', action='store_true',
35 help='list all supported fileformats')
36 info.add_argument('-s', '--show', action='store_true', 36 info.add_argument('-s', '--show', action='store_true',
37 help='list all the harmful metadata of a file without removing them') 37 help='list all the harmful metadata of a file without removing them')
38 info.add_argument('-L', '--lightweight', action='store_true', 38 info.add_argument('-L', '--lightweight', action='store_true',