Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/collaboration/tubeconn.py
diff options
context:
space:
mode:
Diffstat (limited to 'collaboration/tubeconn.py')
-rw-r--r--collaboration/tubeconn.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/collaboration/tubeconn.py b/collaboration/tubeconn.py
index 1014a46..9a496d9 100644
--- a/collaboration/tubeconn.py
+++ b/collaboration/tubeconn.py
@@ -62,11 +62,13 @@ class TubeConnection(Connection):
# pylint: disable=W0201
# Confused by __new__
self.self_handle = handle
- match = self._tubes_iface.connect_to_signal('DBusNamesChanged',
- self._on_dbus_names_changed)
- self._tubes_iface.GetDBusNames(self.tube_id,
- reply_handler=self._on_get_dbus_names_reply,
- error_handler=self._on_get_dbus_names_error)
+ match = self._tubes_iface.connect_to_signal(
+ 'DBusNamesChanged',
+ self._on_dbus_names_changed)
+ self._tubes_iface.GetDBusNames(
+ self.tube_id,
+ reply_handler=self._on_get_dbus_names_reply,
+ error_handler=self._on_get_dbus_names_error)
self._dbus_names_changed_match = match
def _on_get_self_handle_error(self, e):