diff options
| author | jvoisin | 2015-12-20 15:49:27 +0100 |
|---|---|---|
| committer | jvoisin | 2015-12-20 15:49:27 +0100 |
| commit | 07057bc6adceef5b626d69442e48d0babab1134c (patch) | |
| tree | 02bf7e86a23c56c7d99aa12a597ea140049b2646 /libmat/strippers.py | |
| parent | 731444154c52461d69ad1b9331b7f9af900f693d (diff) | |
Correct wording for absent dependencies
There is _no_ image support without exiftool, and _no_ audio support
without mutagen. Not "limited" support.
Diffstat (limited to 'libmat/strippers.py')
| -rw-r--r-- | libmat/strippers.py | 4 |
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 |
| 60 | except ImportError: | 60 | except 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 |
| 64 | try: | 64 | try: |
| @@ -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 |
| 70 | except OSError: | 70 | except OSError: |
| 71 | logging.error('Unable to find exiftool: limited images support') | 71 | logging.error('Unable to find exiftool: no images support') |
