Index: updates/textw/timezone_text.py =================================================================== RCS file: /cvsroot/smeserver/cdrom.image/sme9/updates/textw/timezone_text.py,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- updates/textw/timezone_text.py 30 Jul 2013 21:49:21 -0000 1.1 +++ updates/textw/timezone_text.py 30 Jul 2013 21:50:16 -0000 1.2 @@ -43,8 +43,7 @@ def updateSysClock(self): args = ["--hctosys"] - if self.c.selected(): - args.append("--utc") + args.append("--utc") iutil.execWithRedirect("hwclock", args) self.g.setTimer(500) @@ -89,14 +88,10 @@ self.l.setCurrent(default.replace("_", " ")) # self.l.setCallback(self.updateClock) - self.c = Checkbox(_("System clock uses UTC"), isOn = asUtc) -# self.c.setCallback(self.updateSysClock) - self.g = GridFormHelp(screen, _("Time Zone Selection"), "timezone", 1, 5) self.g.add(t, 0, 0) # self.g.add(self.label, 0, 1, padding = (0, 1, 0, 0), anchorLeft = 1) - self.g.add(self.c, 0, 2, padding = (0, 1, 0, 1), anchorLeft = 1) self.g.add(self.l, 0, 3, padding = (0, 0, 0, 1)) self.g.add(bb, 0, 4, growx = 1) @@ -124,7 +119,7 @@ break screen.popWindow() - anaconda.id.timezone.setTimezoneInfo(self.l.current().replace(" ", "_"), asUtc = self.c.selected()) + anaconda.id.timezone.setTimezoneInfo(self.l.current().replace(" ", "_"), asUtc = 1) return INSTALL_OK