Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2008-10-22 10:53:47 (GMT)
committer Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>2008-10-22 10:53:47 (GMT)
commit8b75f5524087c41ccd8563009761e2ce3bc65946 (patch)
tree3ffd60e7bee9147283b3dd0a1fe0ccdeaea25cf9 /src
parent995b989ef4ee3a4ec5d9886f6478d9bb849cd454 (diff)
rename _conn_addded_cb to __conn_addded_cb as that's a callback
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/model/neighborhood.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jarabe/model/neighborhood.py b/src/jarabe/model/neighborhood.py
index e0d5aef..7aada26 100644
--- a/src/jarabe/model/neighborhood.py
+++ b/src/jarabe/model/neighborhood.py
@@ -93,12 +93,12 @@ class Neighborhood(gobject.GObject):
reply_handler=self._get_activities_cb)
self._conn_watcher = connection_watcher.ConnectionWatcher()
- self._conn_watcher.connect('connection-added', self._conn_addded_cb)
+ self._conn_watcher.connect('connection-added', self.__conn_addded_cb)
for conn in self._conn_watcher.get_connections():
- self._conn_addded_cb(self._conn_watcher, conn)
+ self.__conn_addded_cb(self._conn_watcher, conn)
- def _conn_addded_cb(self, watcher, conn):
+ def __conn_addded_cb(self, watcher, conn):
if CONN_INTERFACE_GADGET not in conn:
return