summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Songinfo.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/Songinfo.py')
-rw-r--r--nephilim/plugins/Songinfo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/plugins/Songinfo.py b/nephilim/plugins/Songinfo.py
index 0701ddb..7214c41 100644
--- a/nephilim/plugins/Songinfo.py
+++ b/nephilim/plugins/Songinfo.py
@@ -42,7 +42,7 @@ class Songinfo(Plugin):
self.settings.beginGroup(self.plugin.name)
tags_enabled = self.settings.value('tagtypes').toStringList()
- tags = self.plugin.mpclient.tagtypes()
+ tags = self.plugin.mpclient.tagtypes
self.taglist = QtGui.QListWidget(self)
self.taglist.setDragDropMode(QtGui.QAbstractItemView.InternalMove)
for tag in [tag for tag in tags_enabled if tag in tags]:
@@ -101,7 +101,7 @@ class Songinfo(Plugin):
return self.SettingsWidgetSonginfo(self)
def update_tagtypes(self):
- self.__tags = [tag for tag in self.settings.value(self.name + '/tagtypes').toStringList() if tag in self.mpclient.tagtypes()]
+ self.__tags = [tag for tag in self.settings.value(self.name + '/tagtypes').toStringList() if tag in self.mpclient.tagtypes]
self.o.set_tagtypes(self.__tags)
def refresh(self):
self.logger.info('Refreshing.')