Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/activity/registry.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/activity/registry.py')
-rw-r--r--sugar/activity/registry.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sugar/activity/registry.py b/sugar/activity/registry.py
index b873821..a279aa9 100644
--- a/sugar/activity/registry.py
+++ b/sugar/activity/registry.py
@@ -29,15 +29,15 @@ def _activity_info_from_dict(info_dict):
if not info_dict:
return None
return ActivityInfo(info_dict['name'], info_dict['icon'],
- info_dict['service_name'], info_dict['path'],
+ info_dict['bundle_id'], info_dict['path'],
info_dict['show_launcher'], info_dict['command'])
class ActivityInfo(object):
- def __init__(self, name, icon, service_name,
+ def __init__(self, name, icon, bundle_id,
path, show_launcher, command):
self.name = name
self.icon = icon
- self.service_name = service_name
+ self.bundle_id = bundle_id
self.path = path
self.command = command
self.show_launcher = show_launcher