diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-23 04:45:11 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-23 04:45:11 +0000 |
commit | 66eb13014f6feff6f974a33feed3be245539673b (patch) | |
tree | f4bcba00d0d267598c953006bf97721dfc7cd164 /textw | |
parent | c75df9d95e5d4e8532d72c444f5bb00da2c083ab (diff) | |
download | anaconda-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 'textw')
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index ea1eaa077..668232432 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -936,7 +936,7 @@ class PartitionWindow: _("Must have a / partition to install on.")) continue - (errors, warnings) = sanityCheckAllRequests(self.partitions) + (errors, warnings) = sanityCheckAllRequests(self.partitions, self.diskset) rc = partitionSanityErrors(self.intf, errors) if rc != 1: continue |