diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-16 23:36:20 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-16 23:36:20 +0000 |
commit | f4751959cfb86d2567f9f526530c8bcfc052612f (patch) | |
tree | 36c0399a7cb7e0609a73ecabf730d47a61c5212b /lilo.py | |
parent | 21b8db5e2df4d248e4b9160ba3ec01d3867041ec (diff) | |
download | anaconda-f4751959cfb86d2567f9f526530c8bcfc052612f.tar.gz anaconda-f4751959cfb86d2567f9f526530c8bcfc052612f.tar.xz anaconda-f4751959cfb86d2567f9f526530c8bcfc052612f.zip |
fix problem with size of tuples to match new style
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,11 +155,11 @@ class LiloConfiguration: for (mntpoint, device, fstype, raidType, start, size, makeup) in raid: mountsByDev[device] = mntpoint - drives.append(device, "", 2, 0, 0) + drives.append(device, "", 2, 0, 0, 0, 0) for (device, mntpoint, fsystem, makeup) in fstab.existingRaidList(): mountsByDev[device] = mntpoint - drives.append(device, "", 2, 0, 0) + drives.append(device, "", 2, 0, 0, 0, 0) oldImages = {} for dev in self.liloImages.keys(): |