diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-05 19:09:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-05 19:09:13 +0000 |
commit | f285eecba69fdbf577216a386bbc7e3250ea577b (patch) | |
tree | 374d3b02f5d1fd64c4c8f08e05c5c67a1c7f4991 /textw | |
parent | 6b36605ffad78fa33bcc56ac27b9cabddd8310bc (diff) | |
download | anaconda-f285eecba69fdbf577216a386bbc7e3250ea577b.tar.gz anaconda-f285eecba69fdbf577216a386bbc7e3250ea577b.tar.xz anaconda-f285eecba69fdbf577216a386bbc7e3250ea577b.zip |
use the right functions to get bootpart and boothd
Diffstat (limited to 'textw')
-rw-r--r-- | textw/silo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/silo.py b/textw/silo.py index e8fabca04..360b86e0f 100644 --- a/textw/silo.py +++ b/textw/silo.py @@ -55,7 +55,8 @@ class SiloWindow: if mount != '/': return INSTALL_NOOP if todo.skipLilo: return INSTALL_NOOP - (bootpart, boothd, mbrpart) = todo.silo.getSiloOptions() + bootpart = todo.fstab.getBootDevice() + boothd = todo.fstab.getMbrDevice() format = "/dev/%-11s %s%*s" str1 = _("Master Boot Record (MBR)") |