From d22f00d89486da4d0ae79cbd7252c20e142e7a86 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Wed, 1 Aug 2007 14:22:11 -0400 Subject: [PATCH] Don't set a server by default outside the emulator --- shell/intro/intro.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell/intro/intro.py b/shell/intro/intro.py index b760c81d..ba633e39 100644 --- a/shell/intro/intro.py +++ b/shell/intro/intro.py @@ -221,7 +221,10 @@ class IntroWindow(gtk.Window): section = 'Server' if not cp.has_section(section): cp.add_section(section) - cp.set(section, 'Server', 'olpc.collabora.co.uk') + if env.is_emulator(): + cp.set(section, 'Server', 'olpc.collabora.co.uk') + else: + cp.set(section, 'Server', '') cp.set(section, 'Registered', 'False') config_path = os.path.join(env.get_profile_path(), 'config')