From 39cb68ce615deea85d08747965c083a08c5a571d Mon Sep 17 00:00:00 2001 From: jvoisin Date: Tue, 1 Nov 2011 14:02:33 +0100 Subject: s/meta/metadata --- mat-cli | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mat-cli') diff --git a/mat-cli b/mat-cli index 995e69b..fbcaa62 100755 --- a/mat-cli +++ b/mat-cli @@ -34,7 +34,7 @@ The default behaviour is to clean files given in argument') info.add_option('--check', '-c', action='store_true', default=False, help='Check if a file is free of harmful metadatas') info.add_option('--display', '-d', action='store_true', default=False, - help='List all the harmful meta of a file without removing them') + help='List all the harmful metadata of a file without removing them') info.add_option('--list', '-l', action='store_true', default=False, help='List all supported fileformat') info.add_option('--version', '-v', action='callback', @@ -61,15 +61,15 @@ def display_version(*_): def list_meta(class_file, filename, force): ''' - Print all the meta of 'filename' on stdout + Print all the metadataof 'filename' on stdout ''' print('[+] File %s :' % filename) if force is False and class_file.is_clean(): - print('No harmful meta found') + print('No harmful metadata found') else: meta = class_file.get_meta() if meta is None: - print('No harmful meta found') + print('No harmful metadata found') else: for key, value in class_file.get_meta().iteritems(): print(key + ' : ' + str(value)) -- cgit v1.3