summaryrefslogtreecommitdiffstats
path: root/pyanaconda/bootloader.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-06-26 16:11:50 -0400
committerChris Lumens <clumens@redhat.com>2012-06-26 16:25:11 -0400
commit554e64aa5c8f93171f040d64f493f9e041f8194f (patch)
tree32c4a7effef6d8f37ccb653707b644a8cefd5a2c /pyanaconda/bootloader.py
parent337bfabeacc0710bf5f31b90b4c312facf1964c9 (diff)
downloadanaconda-554e64aa5c8f93171f040d64f493f9e041f8194f.tar.gz
anaconda-554e64aa5c8f93171f040d64f493f9e041f8194f.tar.xz
anaconda-554e64aa5c8f93171f040d64f493f9e041f8194f.zip
BootLoader doesn't have a self.storage attribute.
Diffstat (limited to 'pyanaconda/bootloader.py')
-rw-r--r--pyanaconda/bootloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 448d65c90..640b7103d 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -778,7 +778,7 @@ class BootLoader(object):
dracut_devices.extend(storage.fsset.swapDevices)
# Does /usr have its own device? If so, we need to tell dracut
- usr_device = self.storage.mountpoints.get("/usr")
+ usr_device = storage.mountpoints.get("/usr")
if usr_device:
dracut_devices.extend([usr_device])