From df41d89bb6bf243dd355dfae69d32cd38725665f Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Wed, 20 Jun 2001 22:38:48 +0000 Subject: fix ups to RAID sanity checking --- textw/partition_text.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'textw') diff --git a/textw/partition_text.py b/textw/partition_text.py index af94948ea..623bc998c 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -403,7 +403,7 @@ class PartitionWindow: request.primary = primonly request.maxSize = maxsize - err = sanityCheck(self.partitions, request) + err = sanityCheckPartitionRequest(self.partitions, request) if err: self.intf.messageWindow(_("Error With Request"), "%s" % (err)) @@ -420,7 +420,7 @@ class PartitionWindow: else: origrequest.format = 0 - err = sanityCheck(self.partitions, origrequest) + err = sanityCheckPartitionRequest(self.partitions, origrequest) if err: self.intf.messageWindow(_("Error With Request"), "%s" % (err)) @@ -502,7 +502,7 @@ class PartitionWindow: else: request.format = 0 - err = sanityCheck(self.partitions, request) + err = sanityCheckPartitionRequest(self.partitions, request) if err: self.intf.messageWindow(_("Error With Request"), "%s" % (err)) @@ -636,6 +636,7 @@ class PartitionWindow: else: if not self.partitions.getRequestByMountPoint("/"): continue + self.fsset.reset() for request in self.partitions.requests: # XXX improve sanity checking if not request.fstype or (request.fstype.isMountable() and not request.mountpoint): -- cgit