diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-04 20:57:45 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-04 20:57:45 +0000 |
commit | 665ece8ffd610af23908a8be5de7d88febae23f9 (patch) | |
tree | b3f754983ed03642cdd1af1b1520b28786297eaf /textw/bootloader_text.py | |
parent | 61f62fdfdfbd90e2196502c947dea2c711e38b2b (diff) | |
download | anaconda-665ece8ffd610af23908a8be5de7d88febae23f9.tar.gz anaconda-665ece8ffd610af23908a8be5de7d88febae23f9.tar.xz anaconda-665ece8ffd610af23908a8be5de7d88febae23f9.zip |
Fixed up a couple references I forgot earlier.
Diffstat (limited to 'textw/bootloader_text.py')
-rw-r--r-- | textw/bootloader_text.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py index 7cd537b42..d0d53730f 100644 --- a/textw/bootloader_text.py +++ b/textw/bootloader_text.py @@ -139,7 +139,7 @@ class BootloaderAppendWindow: class BootloaderLocationWindow: def __call__(self, screen, anaconda): - if anaconda.id.dispatch.stepInSkipList("instbootloader"): return INSTALL_NOOP + if anaconda.dispatch.stepInSkipList("instbootloader"): return INSTALL_NOOP choices = anaconda.id.fsset.bootloaderChoices(anaconda.id.diskset, anaconda.id.bootloader) if len(choices.keys()) == 1: @@ -252,8 +252,8 @@ class BootloaderImagesWindow: self.bl = anaconda.id.bootloader - images = bl.images.getImages() - default = bl.images.getDefault() + images = self.bl.images.getImages() + default = self.bl.images.getDefault() listboxLabel = Label( "%-7s %-25s %-12s" % ( _("Default"), _("Boot label"), _("Device"))) |