summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-11-12 16:46:50 +0000
committerMike Fulbright <msf@redhat.com>2002-11-12 16:46:50 +0000
commit90c4a40303e44eb88abbec4cc3e5e31a1f7553ba (patch)
tree1cad135ddd69158a7bbb277865d36e1943ec58d8 /instdata.py
parentd34f57d688c017cf31d5d1700d804c1d43ed6d29 (diff)
downloadanaconda-90c4a40303e44eb88abbec4cc3e5e31a1f7553ba.tar.gz
anaconda-90c4a40303e44eb88abbec4cc3e5e31a1f7553ba.tar.xz
anaconda-90c4a40303e44eb88abbec4cc3e5e31a1f7553ba.zip
changes to work with new xsetup object
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/instdata.py b/instdata.py
index 371aef084..9429d4618 100644
--- a/instdata.py
+++ b/instdata.py
@@ -97,8 +97,8 @@ class InstallData:
self.monitor = monitor
# expects a XF86Config object
- def setXconfig(self, xconfig):
- self.xconfig = xconfig
+ def setXSetup(self, xsetup):
+ self.xsetup = xsetup
def write(self, instPath):
self.langSupport.write (instPath)
@@ -125,7 +125,7 @@ class InstallData:
self.langSupport.writeKS(f)
self.keyboard.writeKS(f)
self.mouse.writeKS(f)
- self.xconfig.writeKS(f, self.desktop)
+ self.xsetup.writeKS(f, self.desktop)
self.network.writeKS(f)
self.rootPassword.writeKS(f, self.auth)
self.firewall.writeKS(f)
@@ -191,7 +191,7 @@ class InstallData:
self.mouse = None
self.monitor = None
self.videocard = None
- self.xconfig = None
+ self.xsetup = None
self.extraModules = extraModules
self.floppyDevice = floppyDevice
self.fsset = fsset.FileSystemSet()