diff --git a/modules/lastfm.py b/modules/lastfm.py index 2f7eb20..f10915b 100644 --- a/modules/lastfm.py +++ b/modules/lastfm.py @@ -114,7 +114,11 @@ def now_playing(phenny, input): tags[e.tag] = e track = tags['name'].text.strip() - artist = tags['artist'].text.strip() + + artist = "" + for e in tags['artist']: + if e.tag == 'name': + artist = e.text.strip() album = "unknown" if tags['album'].text: