From a64b69775aaa46de7f70aff18a18b527dbea32cc Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 5 Apr 2013 11:44:56 +0200 Subject: Add mp3 qnd remove tag.gg from supported fileformats --- MAT/strippers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 STRIPPERS = { 'application/x-tar': archive.TarStripper, - 'application/x-gzip': archive.GzipStripper, 'application/x-bzip2': archive.Bzip2Stripper, 'application/zip': archive.ZipStripper, 'audio/mpeg': audio.MpegAudioStripper, @@ -52,6 +51,7 @@ try: import mutagen STRIPPERS['audio/x-flac'] = audio.FlacStripper STRIPPERS['audio/vorbis'] = audio.OggStripper + STRIPPERS['audio/mpeg'] = audio.MpegAudioStripper except ImportError: print('Unable to import python-mutagen: limited audio format support') -- cgit v1.3