Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'tutorius/service.py')
-rw-r--r--tutorius/service.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tutorius/service.py b/tutorius/service.py
index 11a94a5..1564339 100644
--- a/tutorius/service.py
+++ b/tutorius/service.py
@@ -3,6 +3,7 @@ import dbus
from .engine import Engine
from .dbustools import remote_call
from .TProbe import ProbeManager
+from .creator import Creator
import logging
LOGGER = logging.getLogger("sugar.tutorius.service")
@@ -24,6 +25,8 @@ class Service(dbus.service.Object):
self._probeMgr = ProbeManager()
+ Creator(self._probeMgr)
+
def start(self):
""" Start the service itself
"""