summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-16 23:36:20 +0000
committerMike Fulbright <msf@redhat.com>2001-01-16 23:36:20 +0000
commitf4751959cfb86d2567f9f526530c8bcfc052612f (patch)
tree36c0399a7cb7e0609a73ecabf730d47a61c5212b /lilo.py
parent21b8db5e2df4d248e4b9160ba3ec01d3867041ec (diff)
downloadanaconda-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lilo.py b/lilo.py
index ac61d3c82..cb2788af0 100644
--- a/lilo.py
+++ b/lilo.py
@@ -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():