summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MAT/strippers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MAT/strippers.py b/MAT/strippers.py
index d274e7e..4279755 100644
--- a/MAT/strippers.py
+++ b/MAT/strippers.py
@@ -12,7 +12,6 @@ import subprocess
12 12
13STRIPPERS = { 13STRIPPERS = {
14 'application/x-tar': archive.TarStripper, 14 'application/x-tar': archive.TarStripper,
15 'application/x-gzip': archive.GzipStripper,
16 'application/x-bzip2': archive.Bzip2Stripper, 15 'application/x-bzip2': archive.Bzip2Stripper,
17 'application/zip': archive.ZipStripper, 16 'application/zip': archive.ZipStripper,
18 'audio/mpeg': audio.MpegAudioStripper, 17 'audio/mpeg': audio.MpegAudioStripper,
@@ -52,6 +51,7 @@ try:
52 import mutagen 51 import mutagen
53 STRIPPERS['audio/x-flac'] = audio.FlacStripper 52 STRIPPERS['audio/x-flac'] = audio.FlacStripper
54 STRIPPERS['audio/vorbis'] = audio.OggStripper 53 STRIPPERS['audio/vorbis'] = audio.OggStripper
54 STRIPPERS['audio/mpeg'] = audio.MpegAudioStripper
55except ImportError: 55except ImportError:
56 print('Unable to import python-mutagen: limited audio format support') 56 print('Unable to import python-mutagen: limited audio format support')
57 57