From: yomguy <> Date: Fri, 18 Jul 2008 15:25:37 +0000 (+0000) Subject: fix empty mp3 tag 2 X-Git-Tag: 0.9~322 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=c153fb9847b07b8e65df40f0600d1a831636cc9c;p=telecaster-client.git fix empty mp3 tag 2 --- diff --git a/telecaster.py b/telecaster.py index 8b9a2c0..b1c62da 100755 --- a/telecaster.py +++ b/telecaster.py @@ -174,7 +174,7 @@ class Station(Conference): def write_tags_mp3(self): file = self.file_dir + os.sep + self.filename if os.path.exists(file): - os.system('mp3info -t "a"'+file) + os.system('mp3info -t "a" '+file) audio = ID3(file) #tag = tags.__dict__['TITLE'] audio.add(TIT2(encoding=3, text=self.new_title))