diff options
author | David Lehman <dlehman@redhat.com> | 2009-08-19 12:29:14 -0500 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-08-19 12:40:04 -0500 |
commit | c12945947657f71c2d78aaae21ef2a695f08142c (patch) | |
tree | dabd53442cc445cc50ac674061505c650b3ba2f7 | |
parent | cb8fa4b1c6472dd1637ebfd8f2b47acbfde3f3d6 (diff) | |
download | anaconda-c12945947657f71c2d78aaae21ef2a695f08142c.tar.gz anaconda-c12945947657f71c2d78aaae21ef2a695f08142c.tar.xz anaconda-c12945947657f71c2d78aaae21ef2a695f08142c.zip |
Use disk.description instead of trying to access parted attrs. (#518212)
-rw-r--r-- | iw/bootloader_main_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/bootloader_main_gui.py b/iw/bootloader_main_gui.py index a11e3b964..31068c0b7 100644 --- a/iw/bootloader_main_gui.py +++ b/iw/bootloader_main_gui.py @@ -99,7 +99,7 @@ class MainBootloaderWindow(InstallWindow): for disk in disks: size = disk.size - m = disk.partedDisk.device.model + m = disk.description i = model.append(None) model[i] = ("%s %8.0f MB %s" %(disk.name, size, m), |