From ed542b4a2659bea708cae4217e3983c7bd7f3048 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 19 Sep 2009 08:07:58 +0200 Subject: song: merge multiple same tags instead of picking first --- nephilim/song.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nephilim') diff --git a/nephilim/song.py b/nephilim/song.py index 2452b97..cf2d157 100644 --- a/nephilim/song.py +++ b/nephilim/song.py @@ -28,7 +28,7 @@ class Song(dict): # decode all strings to unicode for tag in data: if isinstance(data[tag], list): - data[tag] = data[tag][0] + data[tag] = ','.join(data[tag]) if isinstance(data[tag], str): data[tag] = data[tag].decode('utf-8') -- cgit v1.2.3