summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-01-06 11:27:55 +0000
committerGerrit Code Review <review@openstack.org>2014-01-06 11:27:55 +0000
commit5ec1e5f3a1dda26ea5b1eee4e3716dc9f6267fa5 (patch)
treed72bc8dfb575a6cf69f7ee6b391d0e7453058007
parent39a570a8742e873fed2255cfccf6a83609e2a93a (diff)
parent57f5e284b0c3c7d94ce1621fa3c93b62f7d27fd5 (diff)
downloadironic-5ec1e5f3a1dda26ea5b1eee4e3716dc9f6267fa5.tar.gz
Merge "Fix wrong message of pxe validator"
-rw-r--r--ironic/drivers/modules/pxe.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/drivers/modules/pxe.py b/ironic/drivers/modules/pxe.py
index 11145cad3..c8e3c4505 100644
--- a/ironic/drivers/modules/pxe.py
+++ b/ironic/drivers/modules/pxe.py
@@ -112,10 +112,10 @@ def _parse_driver_info(node):
missing_info = []
for label in d_info:
if not d_info[label]:
- missing_info.append(label)
+ missing_info.append("pxe_%s" % label)
if missing_info:
raise exception.InvalidParameterValue(_(
- "Can not validate PXE bootloader. The following paramenters "
+ "Can not validate PXE bootloader. The following parameters "
"were not passed to ironic: %s") % missing_info)
# Internal use only