diff options
author | Chris Lumens <clumens@redhat.com> | 2009-02-26 15:41:31 -0500 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-02-27 15:08:56 -0600 |
commit | 4d193ccca95115fe5b0baa4c2f4955c473f3173c (patch) | |
tree | 941059982642f3ec0a920660c49577bb2a4b7df3 /bootloader.py | |
parent | e94357c09d66c01cab18938cb7aa221a0e8e68a7 (diff) | |
download | anaconda-4d193ccca95115fe5b0baa4c2f4955c473f3173c.tar.gz anaconda-4d193ccca95115fe5b0baa4c2f4955c473f3173c.tar.xz anaconda-4d193ccca95115fe5b0baa4c2f4955c473f3173c.zip |
Fix up calls to bootloaderChoices to refer to the platform module now.
Diffstat (limited to 'bootloader.py')
-rw-r--r-- | bootloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py index 99dada4eb..a5e4a946d 100644 --- a/bootloader.py +++ b/bootloader.py @@ -81,7 +81,7 @@ def bootloaderSetupChoices(anaconda): if bootPart: anaconda.id.bootloader.setDevice(bootPart) - choices = anaconda.id.storage.fsset.bootloaderChoices(anaconda.id.bootloader) + choices = anaconda.platform.bootloaderChoices(anaconda.id.bootloader) if not choices and iutil.getPPCMachine() != "iSeries": anaconda.dispatch.skipStep("instbootloader") else: |