Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/config.py b/scripts/config.py
index 5619cd4..b9ccb19 100644
--- a/scripts/config.py
+++ b/scripts/config.py
@@ -82,7 +82,6 @@ class Config(jhbuild.config.Config):
os.environ['SUGAR_PREFIX'] = self.prefix
os.environ['SUGAR_PATH'] = os.path.join(self.prefix, 'share', 'sugar')
os.environ['SUGAR_LOGGER_LEVEL'] = 'debug'
- os.environ['SUGAR_PROFILE'] = 'default'
# Enable debug log of the Telepathy components
os.environ['GABBLE_DEBUG'] = 'all'
@@ -107,3 +106,6 @@ class Config(jhbuild.config.Config):
if 'DBUS_SESSION_BUS_ADDRESS' in os.environ:
del os.environ['DBUS_SESSION_BUS_ADDRESS']
+
+ if not 'SUGAR_PROFILE' in os.environ:
+ os.environ['SUGAR_PROFILE'] = 'default'