Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/presence/presenceservice.py
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-04-09 20:05:32 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-04-09 20:05:32 (GMT)
commit76a0f45aa82ba49138449826ea7b006c784eaa62 (patch)
treea621a1307bc04b406acbb2452439dd25a5807688 /sugar/presence/presenceservice.py
parent4cf8f321f03317c6156e8fe8544b4b3a9d16bb7a (diff)
More new PS fixes
Diffstat (limited to 'sugar/presence/presenceservice.py')
-rw-r--r--sugar/presence/presenceservice.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sugar/presence/presenceservice.py b/sugar/presence/presenceservice.py
index ef954b7..f7e528c 100644
--- a/sugar/presence/presenceservice.py
+++ b/sugar/presence/presenceservice.py
@@ -83,10 +83,10 @@ class PresenceService(gobject.GObject):
obj = self._objcache.get(object_path)
if not obj:
if object_path.startswith(self._PS_BUDDY_OP):
- obj = Buddy.Buddy(self._bus, self._new_object,
+ obj = buddy.Buddy(self._bus, self._new_object,
self._del_object, object_path)
elif object_path.startswith(self._PS_ACTIVITY_OP):
- obj = Activity.Activity(self._bus, self._new_object,
+ obj = activity.Activity(self._bus, self._new_object,
self._del_object, object_path)
else:
raise RuntimeError("Unknown object type")
@@ -158,7 +158,7 @@ class PresenceService(gobject.GObject):
return self._new_object(act_op)
def get_buddies(self):
- resp = self._ps.getBuddies()
+ resp = self._ps.GetBuddies()
buddies = []
for item in resp:
buddies.append(self._new_object(item))