Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/activity/activityservice.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-22 14:55:07 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-22 14:55:07 (GMT)
commitc4435397fc2367743acf980b3c978614b59bb28f (patch)
tree28fcb4e591c82c240084576c3cb08d3f87a79c98 /sugar/activity/activityservice.py
parent02f375b7108037b6a1dc2f002f03091aa4853b8a (diff)
Remove bundle specific stuff from env.
Move get_bundle_path to activity.
Diffstat (limited to 'sugar/activity/activityservice.py')
-rw-r--r--sugar/activity/activityservice.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sugar/activity/activityservice.py b/sugar/activity/activityservice.py
index defeb08..9a7efb3 100644
--- a/sugar/activity/activityservice.py
+++ b/sugar/activity/activityservice.py
@@ -52,9 +52,9 @@ class ActivityService(dbus.service.Object):
return self._activity.get_id()
@dbus.service.method(_ACTIVITY_INTERFACE)
- def get_type(self):
- """Get the activity type"""
- return self._activity.get_type()
+ def get_service_name(self):
+ """Get the activity service name"""
+ return self._activity.get_service_name()
@dbus.service.method(_ACTIVITY_INTERFACE)
def get_shared(self):