summaryrefslogtreecommitdiffstats
path: root/raid.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-14 22:16:21 +0000
committerMatt Wilson <msw@redhat.com>2001-08-14 22:16:21 +0000
commitf6d8302a295d33b992c7140d209aca4b4b3a9be6 (patch)
treeecae1f8c979195172dae7ea35db9926140b4b508 /raid.py
parent313268c2cd940073da907967e96294f1e12afacb (diff)
downloadanaconda-f6d8302a295d33b992c7140d209aca4b4b3a9be6.tar.gz
anaconda-f6d8302a295d33b992c7140d209aca4b4b3a9be6.tar.xz
anaconda-f6d8302a295d33b992c7140d209aca4b4b3a9be6.zip
backwards, oops
Diffstat (limited to 'raid.py')
-rw-r--r--raid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/raid.py b/raid.py
index 1b47b04ac..f982502e7 100644
--- a/raid.py
+++ b/raid.py
@@ -78,9 +78,9 @@ def scanForRaid(drives):
(level, totalDisks, mdMinor, devices) = raidSets[key]
if len(devices) < totalDisks:
log("missing components of raid device md%d. The "
- "raid device needs %d drives and only %d were found. "
+ "raid device needs %d drive(s) and only %d (was/were) found. "
"This raid device will not be started.", mdMinor,
- len(devices), totalDisks)
+ totalDisks, len(devices))
continue
raidList.append((mdMinor, devices, level, totalDisks))