summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2015-12-20 15:49:27 +0100
committerjvoisin2015-12-20 15:49:27 +0100
commit07057bc6adceef5b626d69442e48d0babab1134c (patch)
tree02bf7e86a23c56c7d99aa12a597ea140049b2646
parent731444154c52461d69ad1b9331b7f9af900f693d (diff)
Correct wording for absent dependencies
There is _no_ image support without exiftool, and _no_ audio support without mutagen. Not "limited" support.
-rw-r--r--libmat/strippers.py4
1 files changed, 2 insertions, 2 deletions
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:
58 STRIPPERS['audio/ogg'] = mutagenstripper.OggStripper 58 STRIPPERS['audio/ogg'] = mutagenstripper.OggStripper
59 STRIPPERS['audio/mpeg'] = mutagenstripper.MpegAudioStripper 59 STRIPPERS['audio/mpeg'] = mutagenstripper.MpegAudioStripper
60except ImportError: 60except ImportError:
61 logging.error('Unable to import python-mutagen: limited audio format support') 61 logging.error('Unable to import python-mutagen: no audio format support')
62 62
63# exiftool 63# exiftool
64try: 64try:
@@ -68,4 +68,4 @@ try:
68 STRIPPERS['image/png'] = exiftool.PngStripper 68 STRIPPERS['image/png'] = exiftool.PngStripper
69 STRIPPERS['image/tiff'] = exiftool.TiffStripper 69 STRIPPERS['image/tiff'] = exiftool.TiffStripper
70except OSError: 70except OSError:
71 logging.error('Unable to find exiftool: limited images support') 71 logging.error('Unable to find exiftool: no images support')