summaryrefslogtreecommitdiff
path: root/nephilim/plugins
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-03-07 19:31:25 +0100
committerAnton Khirnov <wyskas@gmail.com>2009-03-07 19:31:25 +0100
commit506745dced53b6b6d661207a766d5d66ee33620d (patch)
tree334f5cc98a46a4adaf0663ef7d1f8c434bc209f3 /nephilim/plugins
parent88a6d7fcb3d2ae440f56f820f586a52146d73237 (diff)
winConnect: get rid of camelcase.
Diffstat (limited to 'nephilim/plugins')
-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()):