summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-17 23:30:22 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:28 -0500
commit5254ceaa579914280c4423aada787c2a150cd7ea (patch)
treef00974a3215ac4b387f8bfbee731e33079e6d632 /bootloader.py
parent27e7a063c9890ec13bab468854c3d0a263dd21d6 (diff)
Move ksdata to be an attribute on Anaconda.
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader.py b/bootloader.py
index 5ef6729d4..b4dac5ba3 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -63,8 +63,8 @@ def bootloaderSetupChoices(anaconda):
sys.exit(0)
return DISPATCH_FORWARD
- if anaconda.id.ksdata and anaconda.id.ksdata.bootloader.driveorder:
- anaconda.id.bootloader.updateDriveList(anaconda.id.ksdata.bootloader.driveorder)
+ if anaconda.ksdata and anaconda.ksdata.bootloader.driveorder:
+ anaconda.id.bootloader.updateDriveList(anaconda.ksdata.bootloader.driveorder)
else:
#We want the selected bootloader drive to be preferred
pref = anaconda.id.bootloader.drivelist[:1]