summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Filebrowser.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/Filebrowser.py')
-rw-r--r--nephilim/plugins/Filebrowser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/plugins/Filebrowser.py b/nephilim/plugins/Filebrowser.py
index 84b1e9d..65256a8 100644
--- a/nephilim/plugins/Filebrowser.py
+++ b/nephilim/plugins/Filebrowser.py
@@ -53,13 +53,13 @@ class wgFilebrowser(QtGui.QWidget):
self.view.setRootIndex(index)
self.path.setText(self.model.filePath(index))
else:
- if not 'file://' in self.plugin.mpclient()().urlhandlers():
+ if not 'file://' in self.plugin.mpclient().urlhandlers():
self.set_status('file:// handler not available. Connect via unix domain sockets.')
return
paths = []
for index in self.view.selectedIndexes():
paths.append(u'file://' + unicode(self.model.filePath(index)))
- self.plugin.mpclient()().add(paths)
+ self.plugin.mpclient().add(paths)
def path_changed(self):
if os.path.isdir(self.path.text()):