summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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')