summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Lyrics.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/Lyrics.py')
-rw-r--r--nephilim/plugins/Lyrics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/plugins/Lyrics.py b/nephilim/plugins/Lyrics.py
index f0ca266..61d34f1 100644
--- a/nephilim/plugins/Lyrics.py
+++ b/nephilim/plugins/Lyrics.py
@@ -87,7 +87,7 @@ class LyricsWidget(QtGui.QWidget):
return self.__text_view.clear()
# a late thread might call this for a previous song
- if song != self.plugin.mpclient.current_song():
+ if song != self.plugin.mpclient.cur_song:
return
self.__text_view.clear()
@@ -237,7 +237,7 @@ class Lyrics(Plugin):
self.__results = 0
self.__index = len(self.__fetchers)
self.o.lyrics_loaded = False
- song = self.mpclient.current_song()
+ song = self.mpclient.cur_song
if not song:
self.__lyrics_dir = ''
self.__lyrics_path = ''