]> git.parisson.com Git - telecaster-server.git/commitdiff
fix empty mp3 tag 2
authoryomguy <>
Fri, 18 Jul 2008 15:25:37 +0000 (15:25 +0000)
committeryomguy <>
Fri, 18 Jul 2008 15:25:37 +0000 (15:25 +0000)
telecaster.py

index 8b9a2c008e64f0bd9d61905a82f3011891fdc706..b1c62da23bbc2e676e9ef99f2464c95bf6766db1 100755 (executable)
@@ -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))