summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-23 04:45:11 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-23 04:45:11 +0000
commit66eb13014f6feff6f974a33feed3be245539673b (patch)
treef4bcba00d0d267598c953006bf97721dfc7cd164 /iw
parentc75df9d95e5d4e8532d72c444f5bb00da2c083ab (diff)
downloadanaconda-66eb13014f6feff6f974a33feed3be245539673b.tar.gz
anaconda-66eb13014f6feff6f974a33feed3be245539673b.tar.xz
anaconda-66eb13014f6feff6f974a33feed3be245539673b.zip
sanity checks for sizes need to actually look at the partition since
we could be a growable partition. so, now we need the diskset here too
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index b6e01b2b5..ab7fed61d 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -469,7 +469,7 @@ class PartitionWindow(InstallWindow):
self.parent = ics.getICW().window
def getNext(self):
- (errors, warnings) = sanityCheckAllRequests(self.partitions)
+ (errors, warnings) = sanityCheckAllRequests(self.partitions, self.diskset)
rc = partitionSanityErrors(self.intf, errors)
if rc != 1:
raise gui.StayOnScreen