diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-11 22:56:00 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-11 22:56:00 +0000 |
commit | 5c96939d1b033a744cb9ad64416f188eadcf6eb8 (patch) | |
tree | 8106ea7c804158fb53a80a4a31ea19a6deb4080f /textw | |
parent | 8ce4df95abe673ffa8b76c5f8957a45d1aa05c52 (diff) | |
download | anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.tar.gz anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.tar.xz anaconda-5c96939d1b033a744cb9ad64416f188eadcf6eb8.zip |
Made two different calls to get maxcyl of partitions, one for reading from drive directly, the other for getting it from the ddruid object. Added one entity to tuple returned from partitionList(), fixed up code to reflect change
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index 8a341102f..830685947 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -351,7 +351,7 @@ class LBA32WarningWindow: if iutil.getArch() != "i386": return INSTALL_NOOP - if todo.fstab.getBootPartitionMaxCyl() > 1023: + if todo.fstab.getBootPartitionMaxCylFromDesired() > 1023: if not todo.fstab.edd: rc = ButtonChoiceWindow(screen, _("Boot Partition Warning"), _("You have put the partition containing the kernel (the " |