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 /iw | |
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 'iw')
-rw-r--r-- | iw/rootpartition_gui.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/rootpartition_gui.py b/iw/rootpartition_gui.py index 97d9d8217..746a8f6b7 100644 --- a/iw/rootpartition_gui.py +++ b/iw/rootpartition_gui.py @@ -390,10 +390,9 @@ class LBA32WarningWindow(InstallWindow): if iutil.getArch() != "i386": return INSTALL_NOOP - if self.todo.fstab.getBootPartitionMaxCyl() > 1023: + if self.todo.fstab.getBootPartitionMaxCylFromDesired() > 1023: vbox = GtkVBox (FALSE, 5) - if not self.todo.fstab.edd: label = GtkLabel ( _("You have put the partition containing the kernel (the " |