summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-09-10 00:41:03 +0000
committerpnfisher <pnfisher>1999-09-10 00:41:03 +0000
commitb79a8c289c88d943c6a86847a05ea9595ed743f0 (patch)
treeb848825efac7aa7e2fcdb3813033ab2a72d35e3a
parentef268c1551cb0c1aee686561e3b25b7fe92ce196 (diff)
downloadanaconda-b79a8c289c88d943c6a86847a05ea9595ed743f0.tar.gz
anaconda-b79a8c289c88d943c6a86847a05ea9595ed743f0.tar.xz
anaconda-b79a8c289c88d943c6a86847a05ea9595ed743f0.zip
(getNext): re-enable setting for bootdisk creation.
-rw-r--r--iw/lilo.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/iw/lilo.py b/iw/lilo.py
index 269106169..e0b6a3691 100644
--- a/iw/lilo.py
+++ b/iw/lilo.py
@@ -20,6 +20,11 @@ class LiloWindow (InstallWindow):
self.type = None
def getNext (self):
+ if self.bootdisk.get_active ():
+ self.todo.bootdisk = 1
+ else:
+ self.todo.bootdisk = 0
+
return
if self.lilo.get_active ():
self.todo.setLiloLocation (None)
@@ -30,11 +35,6 @@ class LiloWindow (InstallWindow):
else:
self.todo.setLiloLocation ("partition")
- if self.bootdisk.get_active ():
- self.todo.bootdisk = 1
- else:
- self.todo.bootdisk = 0
-
self.todo.setLiloImages(self.images)
def typeName(self, type):