summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2010-08-27 19:59:24 +0200
committerAnton Khirnov <wyskas@gmail.com>2010-08-27 19:59:24 +0200
commit5b726224bbd8ea0bd9b4d3c06213f01c2a225680 (patch)
tree301d2b194ad54078573d8dc2b632b49d08bee5ea
parent9555954761bc695bf2557a756d3b5df50ab9e8ad (diff)
AlbumCover: 10l, functions applied in wrong order
-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 01d0182..c700f17 100644
--- a/nephilim/plugins/AlbumCover.py
+++ b/nephilim/plugins/AlbumCover.py
@@ -131,7 +131,7 @@ class AlbumCover(Plugin):
i = self.__fetchers.index(self.sender())
if cover and i < self.__index:
- if self.settings.value(int(self.name + '/store')):
+ if int(self.settings.value(self.name + '/store')):
self.save_cover_file(cover)
self.__index = i
return self.o.set_cover(song, cover)