From e4338043f68d0a4da99a5ee162c45eb2fe589a70 Mon Sep 17 00:00:00 2001 From: Andrew Mahone Date: Fri, 25 Jun 2010 00:26:21 -0400 Subject: [PATCH] fix syntax error in OggVorbisCodec replaygain command expression --- audiomangler/codecs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audiomangler/codecs.py b/audiomangler/codecs.py index 5a59a6a..8178ef2 100644 --- a/audiomangler/codecs.py +++ b/audiomangler/codecs.py @@ -203,7 +203,7 @@ class OggVorbisCodec(Codec): _to_wav_pipe_cmd = Expr("(decoder,'-Q','-o','-',infile)") _to_wav_pipe_stdout = Expr("outfile") _from_wav_pipe_cmd = Expr("(encoder,'-Q')+encopts+('-o',outfile,infile)") - _replaygain_cmd = Expr("(replaygain,'-q','-a')+files)") + _replaygain_cmd = Expr("(replaygain,'-q','-a')+files") @classmethod def calc_replaygain(cls,files): -- 2.11.4.GIT