summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-21 11:47:40 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 15:07:19 -0500
commite5998dbf0c6627668d09851401a681025743f4ca (patch)
tree6a25d68673e8d341b68ee2a5e468e7f13da3663c /kickstart.py
parenta220b9fb076ce1eb21c1e15d6af8dc43a4cce877 (diff)
downloadanaconda-e5998dbf0c6627668d09851401a681025743f4ca.tar.gz
anaconda-e5998dbf0c6627668d09851401a681025743f4ca.tar.xz
anaconda-e5998dbf0c6627668d09851401a681025743f4ca.zip
Move timezone to the Anaconda object.
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kickstart.py b/kickstart.py
index 4de8dc4f9..3592a0eb6 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -932,8 +932,8 @@ class Timezone(commands.timezone.FC6_Timezone):
tab.getEntries()):
log.warning("Timezone %s set in kickstart is not valid." % (self.timezone,))
- anaconda.id.timezone.setTimezoneInfo(self.timezone, self.isUtc)
- anaconda.id.ksdata.skipSteps.append("timezone")
+ anaconda.timezone.setTimezoneInfo(self.timezone, self.isUtc)
+ anaconda.ksdata.skipSteps.append("timezone")
class Upgrade(commands.upgrade.F11_Upgrade):
def execute(self, anaconda):