diff options
author | Peter Jones <pjones@redhat.com> | 2006-08-01 20:57:52 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2006-08-01 20:57:52 +0000 |
commit | 8d725d1ed297816aaf7354a153b948a5572e6360 (patch) | |
tree | 7840d5a9ecf57878201263e0da8d913170935220 /partedUtils.py | |
parent | 3f427cd98fb6c9fbc609f2da47cb01b54211b9e8 (diff) | |
download | anaconda-8d725d1ed297816aaf7354a153b948a5572e6360.tar.gz anaconda-8d725d1ed297816aaf7354a153b948a5572e6360.tar.xz anaconda-8d725d1ed297816aaf7354a153b948a5572e6360.zip |
- fix accidental skippedList additions
Diffstat (limited to 'partedUtils.py')
-rw-r--r-- | partedUtils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py index 2604650e7..340e0b106 100644 --- a/partedUtils.py +++ b/partedUtils.py @@ -628,7 +628,8 @@ class DiskSet: def startMdRaid(self): """Start all of the md raid devices associated with the DiskSet.""" - testList = DiskSet.skippedDisks + testList = [] + testList.extend(DiskSet.skippedDisks) if not rhpl.getArch() in ('s390','s390x'): for mp in DiskSet.mpList or []: |