CVS commit by bellenger: * Fix for funny character names in id3 fields and other strings (patch from dax at happycoders ! org) M +1 -1 Playlist.py 1.6 --- kdeextragear-1/amarok/src/scripts/shouter/Playlist.py #1.5:1.6 @@ -262,5 +262,5 @@ try: val = node.getElementsByTagName(t)[0].childNodes[0].data - setattr(self, t.lower(), val) + setattr(self, t.lower(), val.encode('iso-8859-1')) except: pass