Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/engine.py
diff options
context:
space:
mode:
Diffstat (limited to 'tutorius/engine.py')
-rw-r--r--tutorius/engine.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tutorius/engine.py b/tutorius/engine.py
index dda9f3f..9c1dae4 100644
--- a/tutorius/engine.py
+++ b/tutorius/engine.py
@@ -2,7 +2,7 @@ import logging
import dbus.mainloop.glib
from jarabe.model import shell
-from sugar.tutorius.bundler import TutorialStore
+from sugar.tutorius.vault import Vault
from sugar.bundle.activitybundle import ActivityBundle
class Engine:
@@ -25,11 +25,9 @@ class Engine:
self._tutorial.detach()
self._tutorial = None
- store = TutorialStore()
-
#Get the active activity from the shell
activity = self._shell.get_active_activity()
- self._tutorial = store.load_tutorial(tutorialID, bundle_path=activity.get_bundle_path())
+ self._tutorial = Vault.loadTutorial(tutorialID)
#TProbes automatically use the bundle id, available from the ActivityBundle
bundle = ActivityBundle(activity.get_bundle_path())