Make part of the session public so that it can used by tests

This commit is contained in:
Marco Pesenti Gritti
2006-09-10 02:35:53 +02:00
parent f4f70d22f1
commit 47cc58b1e6
12 changed files with 59 additions and 49 deletions
+2 -2
View File
@@ -19,14 +19,14 @@ from sugar import env
env.setup_system()
from session.Emulator import Emulator
from sugar.session.Emulator import Emulator
if os.environ.has_key('SUGAR_EMULATOR') and \
os.environ['SUGAR_EMULATOR'] == 'yes':
emulator = Emulator()
emulator.start()
from session.Session import Session
from Session import Session
session = Session()
session.start()