summaryrefslogtreecommitdiff
path: root/nephilim/plugins
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-02-22 20:58:49 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-02-22 20:58:49 +0100
commit587fc2a4116e64f3b76a47b1986c3dfff44880cf (patch)
tree826339002ba0ab579077454f3c4853a5e0c00768 /nephilim/plugins
parentb2ba3189ff8ea39ad47cffc3f19a28814324aaf9 (diff)
AlbumCover: fix a typo in previous commit.
Diffstat (limited to 'nephilim/plugins')
-rw-r--r--nephilim/plugins/AlbumCover.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py
index cd39d5f..74e6a87 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -29,7 +29,7 @@ class wgAlbumCover(QtGui.QLabel):
# popup menu
self.menu = QtGui.QMenu("album")
select_file_action = self.menu.addAction('Select cover file...')
- self.connect(select_file_aciotn, QtCore.SIGNAL('triggered()'), self.select_cover_file)
+ self.connect(select_file_action, QtCore.SIGNAL('triggered()'), self.select_cover_file)
fetch_amazon_action = self.menu.addAction('Fetch cover from Amazon.')
self.connect(fetch_amazon_action, QtCore.SIGNAL('triggered()'), self.fetch_amazon)