From 93a914ecec1340c970993ea40e78f344b69ff51f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Wei=C3=9Fl?= Date: Thu, 12 Jan 2012 20:22:34 +0100 Subject: [PATCH] id3: lyrics tag description not separated with colon --- picard/formats/id3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picard/formats/id3.py b/picard/formats/id3.py index f4b8f2ae9..06bbe4749 100644 --- a/picard/formats/id3.py +++ b/picard/formats/id3.py @@ -180,7 +180,7 @@ class ID3File(File): elif frameid == 'USLT': name = 'lyrics' if frame.desc: - name += frame.desc + name += ':%s' % frame.desc metadata.add(name, unicode(frame.text)) elif frameid == 'UFID' and frame.owner == 'http://musicbrainz.org': metadata['musicbrainz_trackid'] = unicode(frame.data)