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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nephilim/plugins/Songinfo.py b/nephilim/plugins/Songinfo.py
index b2570d5..0701ddb 100644
--- a/nephilim/plugins/Songinfo.py
+++ b/nephilim/plugins/Songinfo.py
@@ -28,8 +28,8 @@ class Songinfo(Plugin):
tags = None
# private
- DEFAULTS = {'tagtypes' : QtCore.QStringList(['track', 'title', 'artist', 'album',
- 'albumartist', 'disc', 'genre', 'date', 'composer', 'performer', 'file'])}
+ DEFAULTS = {'tagtypes' : ['track', 'title', 'artist', 'album',
+ 'albumartist', 'disc', 'genre', 'date', 'composer', 'performer', 'file']}
#### private ####
@@ -63,7 +63,7 @@ class Songinfo(Plugin):
def save_settings(self):
self.settings.beginGroup(self.plugin.name)
- tags = QtCore.QStringList()
+ tags = []
for i in range(self.taglist.count()):
it = self.taglist.item(i)
if it.checkState() == QtCore.Qt.Checked: