diff options
author | Mike Fulbright <msf@redhat.com> | 2000-06-09 19:02:10 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-06-09 19:02:10 +0000 |
commit | 90a2e33c70ccddfa02a93c4f9ad6f599c481e33e (patch) | |
tree | 0a769ad79784b455616311ad604967afabf6cd0e /installclass.py | |
parent | 0c351207183f8df091b1b1bbf3831f0680bf81a4 (diff) | |
download | anaconda-90a2e33c70ccddfa02a93c4f9ad6f599c481e33e.tar.gz anaconda-90a2e33c70ccddfa02a93c4f9ad6f599c481e33e.tar.xz anaconda-90a2e33c70ccddfa02a93c4f9ad6f599c481e33e.zip |
dumb bug with raid code
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py index 9b45d8849..bdee43c22 100644 --- a/installclass.py +++ b/installclass.py @@ -55,7 +55,8 @@ class BaseInstallClass: [ 0, 1, 5 ].index(level) for device in devices: found = 0 - for (otherMountPoint, sizespc, locspc, fsopts) in self.partitions: + + for (otherMountPoint, sizespc, (devX, partX, primOnlyX), typespecX, fsoptsX) in self.partitions: if otherMountPoint == device: found = 1 if not found: |