diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-15 16:24:38 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-15 16:24:38 +0000 |
commit | 662b220be6f5270a524963b0bf66f0e3fdff045e (patch) | |
tree | 7af89e9e9fcf0c4cf3a66a133f580c0283062781 /iw/timezone_gui.py | |
parent | 9665cf575536f7c75e5c6167c518d47efdd2814e (diff) | |
download | anaconda-662b220be6f5270a524963b0bf66f0e3fdff045e.tar.gz anaconda-662b220be6f5270a524963b0bf66f0e3fdff045e.tar.xz anaconda-662b220be6f5270a524963b0bf66f0e3fdff045e.zip |
don't put None in the XkbVarient, don't set up the keyboard in test mode
Diffstat (limited to 'iw/timezone_gui.py')
-rw-r--r-- | iw/timezone_gui.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py index f085ae3f7..22783a6d5 100644 --- a/iw/timezone_gui.py +++ b/iw/timezone_gui.py @@ -127,11 +127,12 @@ class TimezoneWindow (InstallWindow): if rc: (self.default, asUTC, asArc) = rc else: - self.default = iutil.defaultZone () + self.default = _(iutil.defaultZone ()) + print self.default asUTC = 0 if (string.find (self.default, "UTC") != -1): - self.default = "America/New_York" + self.default = _("America/New_York") self.id = self.list.connect ("draw", self.setcurrent) |