From c367e0138c79fe448e89a89130cedf35b8b72de5 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 16 Apr 2009 10:33:30 +0000 Subject: Activity: make self.telepathy_room_handle public --- diff --git a/src/sugar/presence/activity.py b/src/sugar/presence/activity.py index a7d0ab4..000ad6d 100644 --- a/src/sugar/presence/activity.py +++ b/src/sugar/presence/activity.py @@ -68,7 +68,7 @@ class Activity(gobject.GObject): def __init__(self, bus, new_obj_cb, del_obj_cb, object_path): """Initialse the activity interface, connecting to service""" gobject.GObject.__init__(self) - self._telepathy_room_handle = None + self.telepathy_room_handle = None self._object_path = object_path self._ps_new_object = new_obj_cb self._ps_del_object = del_obj_cb @@ -317,7 +317,7 @@ class Activity(gobject.GObject): ready_handler=text_chan_ready, error_handler=error_handler) found_text_channel = True - self._telepathy_room_handle = handle_ + self.telepathy_room_handle = handle_ elif chan_iface == telepathy.CHANNEL_TYPE_TUBES: telepathy.client.Channel( -- cgit v0.9.1