Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Session.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-07-24 14:24:39 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-07-24 14:24:39 (GMT)
commit7f39ed44e9427a0b045a8d5833b968a0807c9d8e (patch)
tree06e3f372a274504565a7991e4a636bd8f0c44592 /shell/Session.py
parent7e4002596614f82f579f58946eaf67f6b7b3b87f (diff)
More build fixes. Add a script for presence service.
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: