diff options
author | bfox <bfox> | 2001-02-05 21:20:21 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-02-05 21:20:21 +0000 |
commit | 2cfeba74977c17ebb37923424605f529d4fe2dd0 (patch) | |
tree | 6c913bdd610403bf45829ff1a74a099cd558249e /fstab.py | |
parent | b0408fadbf89e24c87fe57aea1a370585d5927cf (diff) | |
download | anaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.tar.gz anaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.tar.xz anaconda-2cfeba74977c17ebb37923424605f529d4fe2dd0.zip |
Added another error check for the partitions. I think bug #16686 is resolved now.
Diffstat (limited to 'fstab.py')
-rw-r--r-- | fstab.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ class Fstab: (drives, raid) = self.partitionList() for (drive, part, type, start, cyl, size, preexisting) in drives: - if preexisting: + if preexisting and isValidExt2(drive): alreadyExists[part] = 1 badList = [] |