Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/intro/intro.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/intro/intro.py')
-rw-r--r--shell/intro/intro.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/intro/intro.py b/shell/intro/intro.py
index b760c81..ba633e3 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')