summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-08 18:21:41 +0000
committerMatt Wilson <msw@redhat.com>1999-09-08 18:21:41 +0000
commitecce42954effad096e4c613b9705ca55f430efb3 (patch)
tree7a8f0f89f9ef1b7e344ce35b36a247555672804f /iw
parent848bcc936b5afede7f87af2a42b38736f7a0f2af (diff)
downloadanaconda-ecce42954effad096e4c613b9705ca55f430efb3.tar.gz
anaconda-ecce42954effad096e4c613b9705ca55f430efb3.tar.xz
anaconda-ecce42954effad096e4c613b9705ca55f430efb3.zip
Diffstat (limited to 'iw')
-rw-r--r--iw/rootpartition.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/rootpartition.py b/iw/rootpartition.py
index 6b6459601..1ad3f314e 100644
--- a/iw/rootpartition.py
+++ b/iw/rootpartition.py
@@ -84,7 +84,7 @@ class AutoPartitionWindow(InstallWindow):
self.manuallyPartition.get_active()):
drives = self.todo.drives.available ().keys ()
drives.sort ()
- self.todo.ddruid = fsedit(0, drives, self.fstab)
+ self.todo.ddruid = fsedit(0, drives, self.fstab, self.todo.zeroMbr)
self.todo.manuallyPartition()
return None
@@ -101,7 +101,7 @@ class AutoPartitionWindow(InstallWindow):
if not todo.ddruid:
drives = todo.drives.available ().keys ()
drives.sort ()
- todo.ddruid = fsedit(0, drives, self.fstab)
+ todo.ddruid = fsedit(0, drives, self.fstab, self.todo.zeroMbr)
todo.instClass.finishPartitioning(todo.ddruid)
if not todo.getPartitionWarningText():