Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Session.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/Session.py')
-rw-r--r--shell/Session.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/Session.py b/shell/Session.py
index 412dd73..cdea610 100644
--- a/shell/Session.py
+++ b/shell/Session.py
@@ -47,13 +47,14 @@ class MatchboxProcess(Process):
class PresenceServiceProcess(Process):
def __init__(self):
- Process.__init__(self, "python shell/PresenceService/PresenceService.py",)
+ Process.__init__(self, "sugar-presence-service",)
def get_name(self):
return "PresenceService"
def start(self):
Process.start(self)
+ # FIXME we really need something better
time.sleep(3)
class Session: