summaryrefslogtreecommitdiff
path: root/nephilim/plugins/AlbumCover.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-06 10:31:54 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-06 10:31:54 +0100
commitc1e234beae44134d567fb3d8915a77649379fd63 (patch)
treec0662304dc023a9213b1b2466244473623def741 /nephilim/plugins/AlbumCover.py
parent4bb2fd69ab26566f93815dae4aef2679c57b9d05 (diff)
mpclient: get rid of CamelCase everywhere.
Diffstat (limited to 'nephilim/plugins/AlbumCover.py')
-rw-r--r--nephilim/plugins/AlbumCover.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py
index ee51903..5330189 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -67,7 +67,7 @@ class wgAlbumCover(QtGui.QLabel):
def refresh(self):
logging.info("refreshing cover")
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
self.clear()
self.cover_loaded = False
@@ -108,7 +108,7 @@ class wgAlbumCover(QtGui.QLabel):
self.set_cover(cover, write)
def fetch_local_manual(self):
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
return
@@ -157,7 +157,7 @@ class wgAlbumCover(QtGui.QLabel):
return None
def fetch_amazon_manual(self):
- song = self.p.mpclient.getCurrentSong()
+ song = self.p.mpclient.current_song()
if not song:
return
cover = self.fetch_amazon(song)