From kde-commits Tue May 03 16:30:31 2005 From: James Bellenger Date: Tue, 03 May 2005 16:30:31 +0000 To: kde-commits Subject: kdeextragear-1/amarok/src/scripts/shouter Message-Id: <20050503163031.8A5175C46 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111513785212841 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