summaryrefslogtreecommitdiff
path: root/nephilim
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-02-28 13:26:35 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-02-28 13:26:35 +0100
commit586ef5f203e206ea0c349dfc2ff21e1ac81b25e1 (patch)
tree4e751816191fcb84803d63f127158f1cb50e75ce /nephilim
parentaa28db29c5510a2409f5dd53443d6ca0d9df3358 (diff)
Lyrics: a hack to fix unicode in LyricWiki.
Diffstat (limited to 'nephilim')
-rw-r--r--nephilim/plugins/Lyrics.py2
1 files changed, 1 insertions, 1 deletions
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')