From 7dd9e8bcdfe654c83d792cb93926de8633779e97 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 15 May 2018 23:27:58 +0200 Subject: [PATCH] Clear a bit the help of the cli --- main.py | 4 ++-- 1 file 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(): parser.add_argument('files', nargs='*') parser.add_argument('-v', '--version', action='version', version='MAT2 %s' % __version__) + parser.add_argument('-l', '--list', action='store_true', + help='list all supported fileformats') info = parser.add_argument_group('Information') info.add_argument('-c', '--check', action='store_true', help='check if a file is free of harmful metadatas') - info.add_argument('-l', '--list', action='store_true', - help='list all supported fileformats') info.add_argument('-s', '--show', action='store_true', help='list all the harmful metadata of a file without removing them') info.add_argument('-L', '--lightweight', action='store_true',