diff options
author | Matt Wilson <msw@redhat.com> | 2000-07-24 23:14:23 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-07-24 23:14:23 +0000 |
commit | 8f0255052b77fbaaf5fd2ee0b189da38b5639404 (patch) | |
tree | ce59fcc4e61eb248793cb10b366e437e06f1e96f /todo.py | |
parent | 719f0398c5e2134abef158dbbb0630a174e446df (diff) | |
download | anaconda-8f0255052b77fbaaf5fd2ee0b189da38b5639404.tar.gz anaconda-8f0255052b77fbaaf5fd2ee0b189da38b5639404.tar.xz anaconda-8f0255052b77fbaaf5fd2ee0b189da38b5639404.zip |
defer setting the desktop from the instclass until just before we write
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -470,6 +470,7 @@ class ToDo: self.mouse.makeLink(self.instPath) def writeDesktop(self): + self.desktop.set (self.instClass.getDesktop()) f = open(self.instPath + "/etc/sysconfig/desktop", "w") f.write(str (self.desktop)) f.close() @@ -1024,7 +1025,6 @@ class ToDo: todo.bootdisk = todo.instClass.getMakeBootdisk() todo.zeroMbr = todo.instClass.zeroMbr (where, linear, append) = todo.instClass.getLiloInformation() - todo.desktop.set (todo.instClass.getDesktop()) arch = iutil.getArch () if arch == "i386": |