summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Filebrowser.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-03 20:12:58 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-03 20:12:58 +0100
commita41d0a530af6cd96719e2864c6ee61a68047d0c9 (patch)
treeed71cf476941ff1ee4023173b265f3140b641858 /nephilim/plugins/Filebrowser.py
parent9d4bac931e70ff4352039250f4682db4cfa917ea (diff)
Filebrowser: don't pass QString to mpclient.add().
Diffstat (limited to 'nephilim/plugins/Filebrowser.py')
-rw-r--r--nephilim/plugins/Filebrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/plugins/Filebrowser.py b/nephilim/plugins/Filebrowser.py
index 3f96236..b4d055d 100644
--- a/nephilim/plugins/Filebrowser.py
+++ b/nephilim/plugins/Filebrowser.py
@@ -61,7 +61,7 @@ class wgFilebrowser(QtGui.QWidget):
return
paths = []
for index in self.view.selectedIndexes():
- paths.append(u'file://' + self.model.filePath(index))
+ paths.append(u'file://' + unicode(self.model.filePath(index)))
self.plugin.mpclient.addToPlaylist(paths)
def path_changed(self):