diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-12 17:05:45 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-12 17:05:45 +0000 |
commit | dc6734daff807b8379b0ebe3de8f67aafcaa242d (patch) | |
tree | 3f9622259a8cadcd8c0e4297ac9ff409a3db4dd2 /lilo.py | |
parent | 6ce3bbc9778928027ebc2455f7802e24c3fa7288 (diff) | |
download | anaconda-dc6734daff807b8379b0ebe3de8f67aafcaa242d.tar.gz anaconda-dc6734daff807b8379b0ebe3de8f67aafcaa242d.tar.xz anaconda-dc6734daff807b8379b0ebe3de8f67aafcaa242d.zip |
missed a tupled from partitionList() change yesterday
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ class LiloConfiguration: self.liloImages = {} foundDos = 0 - for (dev, devName, fsType, start, size) in drives: + for (dev, devName, fsType, start, size, maxcyl) in drives: # ext2 and raid partitions get listed if they're / -- we do # not allow non-mounted partitions to be booted anymore as # modules are so unlikely to work out as to be not worth |