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:46:10 (GMT)
committer Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>2008-10-22 10:46:10 (GMT)
commit995b989ef4ee3a4ec5d9886f6478d9bb849cd454 (patch)
treec5080dcfb7d81011159cb6612f90da87af80ba0e /src
parentb77fa6c104215fbe7d618a9ccaa800fdb32168a9 (diff)
we don't care about CreateChannel returned variables
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/model/neighborhood.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/model/neighborhood.py b/src/jarabe/model/neighborhood.py
index 5f79444..e0d5aef 100644
--- a/src/jarabe/model/neighborhood.py
+++ b/src/jarabe/model/neighborhood.py
@@ -125,7 +125,7 @@ class Neighborhood(gobject.GObject):
def _request_random_buddies(self, conn, nb):
logging.debug("Request %d random buddies" % nb)
- path, props = conn[CONNECTION_INTERFACE_REQUESTS].CreateChannel(
+ conn[CONNECTION_INTERFACE_REQUESTS].CreateChannel(
{ 'org.freedesktop.Telepathy.Channel.ChannelType':
'org.laptop.Telepathy.Channel.Type.BuddyView',
'org.laptop.Telepathy.Channel.Interface.View.MaxSize': nb
@@ -134,7 +134,7 @@ class Neighborhood(gobject.GObject):
def _request_random_activities(self, conn, nb):
logging.debug("Request %d random activities" % nb)
- path, props = conn[CONNECTION_INTERFACE_REQUESTS].CreateChannel(
+ conn[CONNECTION_INTERFACE_REQUESTS].CreateChannel(
{ 'org.freedesktop.Telepathy.Channel.ChannelType':
'org.laptop.Telepathy.Channel.Type.ActivityView',
'org.laptop.Telepathy.Channel.Interface.View.MaxSize': nb