From 586ef5f203e206ea0c349dfc2ff21e1ac81b25e1 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 28 Feb 2009 13:26:35 +0100 Subject: Lyrics: a hack to fix unicode in LyricWiki. --- nephilim/plugins/Lyrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nephilim/plugins/Lyrics.py b/nephilim/plugins/Lyrics.py index 5a9c98e..fb08b37 100644 --- a/nephilim/plugins/Lyrics.py +++ b/nephilim/plugins/Lyrics.py @@ -70,5 +70,5 @@ class Lyrics(Plugin): req.Song = song.getTitle() result = soap.getSong(req) - return result.Return.Lyrics + return result.Return.Lyrics.decode('utf-8').encode('iso8859').decode('utf-8') -- cgit v1.2.3