From 07057bc6adceef5b626d69442e48d0babab1134c Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 20 Dec 2015 15:49:27 +0100 Subject: Correct wording for absent dependencies There is _no_ image support without exiftool, and _no_ audio support without mutagen. Not "limited" support. --- libmat/strippers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmat') diff --git a/libmat/strippers.py b/libmat/strippers.py index 53591ad..148356f 100644 --- a/libmat/strippers.py +++ b/libmat/strippers.py @@ -58,7 +58,7 @@ try: STRIPPERS['audio/ogg'] = mutagenstripper.OggStripper STRIPPERS['audio/mpeg'] = mutagenstripper.MpegAudioStripper except ImportError: - logging.error('Unable to import python-mutagen: limited audio format support') + logging.error('Unable to import python-mutagen: no audio format support') # exiftool try: @@ -68,4 +68,4 @@ try: STRIPPERS['image/png'] = exiftool.PngStripper STRIPPERS['image/tiff'] = exiftool.TiffStripper except OSError: - logging.error('Unable to find exiftool: limited images support') + logging.error('Unable to find exiftool: no images support') -- cgit v1.3