diff options
Diffstat (limited to 'textw')
-rw-r--r-- | textw/lilo.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/lilo.py b/textw/lilo.py index d86996c1d..1e242772a 100644 --- a/textw/lilo.py +++ b/textw/lilo.py @@ -58,7 +58,8 @@ class LiloWindow: if mount != '/': return INSTALL_NOOP if todo.skipLilo: return INSTALL_NOOP - (bootpart, boothd) = todo.getLiloOptions() + bootpart = self.fstab.getBootDevice() + boothd = self.fstab.getMbrDevice() if (todo.getLiloLocation () == "mbr"): default = 0 |