Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/controlpanel/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/controlpanel/control.py')
-rw-r--r--shell/controlpanel/control.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/shell/controlpanel/control.py b/shell/controlpanel/control.py
index 580536a..a3fa1a4 100644
--- a/shell/controlpanel/control.py
+++ b/shell/controlpanel/control.py
@@ -404,10 +404,9 @@ def set_timezone(timezone):
# Write info to the /etc/sysconfig/clock file
fd = open(_TIMEZONE_CONFIG, "w")
- fd.write('# The ZONE parameter is only evaluated by sugarcontrol.\n')
- fd.write('# The timezone of the system ' +
- 'is defined by the contents of /etc/localtime.\n')
+ fd.write('# use sugar-control-panel to change this\n')
fd.write('ZONE="%s"\n' % timezone)
+ fd.write('UTC=true\n')
fd.close()
else:
print (_("Error timezone does not exist."))