Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/activity/activityfactoryservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/activity/activityfactoryservice.py')
-rw-r--r--sugar/activity/activityfactoryservice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/activity/activityfactoryservice.py b/sugar/activity/activityfactoryservice.py
index bd89b91..2e4ab6b 100644
--- a/sugar/activity/activityfactoryservice.py
+++ b/sugar/activity/activityfactoryservice.py
@@ -28,7 +28,7 @@ import dbus
import dbus.service
import dbus.glib
-from sugar.activity.bundle import Bundle
+from sugar.bundle.activitybundle import ActivityBundle
from sugar.activity import activityhandle
from sugar import logger
from sugar import _sugarext
@@ -155,7 +155,7 @@ def run_with_args(args):
def run(bundle_path):
sys.path.append(bundle_path)
- bundle = Bundle(bundle_path)
+ bundle = ActivityBundle(bundle_path)
logger.start(bundle.get_service_name())