Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2007-10-03 20:11:47 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-10-03 20:11:47 (GMT)
commit8050d0a536ba69e7689206c5e7182cdff4245036 (patch)
tree18d4ca8b14fc30065fc1f0d4bd94e623b175e3eb
parent779155590ef0a541f733b00070624493d42a0cb1 (diff)
PS now creates tubes channel
-rw-r--r--activity.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/activity.py b/activity.py
index 26ccfa1..6b7c031 100644
--- a/activity.py
+++ b/activity.py
@@ -133,12 +133,9 @@ class HelloMeshActivity(Activity):
if text_chan is None:
self._logger.error("Presence service didn't create a text channel")
return
-
- # Make sure we have a Tubes channel - PS doesn't yet provide one
if tubes_chan is None:
- self._logger.debug("Didn't find our Tubes channel, requesting one...")
- tubes_chan = self.conn.request_channel(telepathy.CHANNEL_TYPE_TUBES,
- telepathy.HANDLE_TYPE_ROOM, room, True)
+ self._logger.error("Presence service didn't create a tubes channel")
+ return
self.tubes_chan = tubes_chan
self.text_chan = text_chan