Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/session
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-22 14:15:34 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-22 14:15:34 (GMT)
commit511fec421fd4f14f8d2d8d09ac8269101a3940ea (patch)
tree32bb06a8dccfab5464af2bd364a75ba8017e31f5 /shell/session
parent3e51b086df1221a469bc98842fe779c47f4f2514 (diff)
Simple profile support. First time dialog (ugly and only nick atm).
Diffstat (limited to 'shell/session')
-rw-r--r--shell/session/Session.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/shell/session/Session.py b/shell/session/Session.py
index 28da29a..1019851 100644
--- a/shell/session/Session.py
+++ b/shell/session/Session.py
@@ -4,7 +4,6 @@ import gobject
import time
import re
-from sugar.presence import PresenceService
from Shell import Shell
from ConsoleWindow import ConsoleWindow
from session.Process import Process
@@ -27,9 +26,6 @@ class Session:
"""Takes care of running the shell and all the sugar processes"""
def start(self):
"""Start the session"""
-
- PresenceService.start()
-
process = MatchboxProcess()
process.start()
@@ -38,7 +34,6 @@ class Session:
shell = Shell()
shell.set_console(console)
- shell.start()
from sugar import TracebackUtils
tbh = TracebackUtils.TracebackHelper()