summaryrefslogtreecommitdiff
path: root/ironic_python_agent
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-09-03 15:07:28 +0000
committerGerrit Code Review <review@openstack.org>2015-09-03 15:07:28 +0000
commitbc985934164d22a2ebf5fe6e5a361e9bba7f7d8b (patch)
tree95bb42c6c629086e8be5e9afaf1ca88f5f12e1d1 /ironic_python_agent
parent36ce80175ac7616f0a044019604aece91433d06a (diff)
parente9d2bfe580dd73c0f3d986764792168db2012d05 (diff)
downloadironic-python-agent-bc985934164d22a2ebf5fe6e5a361e9bba7f7d8b.tar.gz
Merge "Three attempts message is incorrect"
Diffstat (limited to 'ironic_python_agent')
-rw-r--r--ironic_python_agent/extensions/image.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ironic_python_agent/extensions/image.py b/ironic_python_agent/extensions/image.py
index 6731ccae..a61a0fbe 100644
--- a/ironic_python_agent/extensions/image.py
+++ b/ironic_python_agent/extensions/image.py
@@ -128,8 +128,7 @@ def _install_grub2(device, root_uuid, efi_system_part_uuid=None):
except processutils.ProcessExecutionError as e:
error_msg = ('Installing GRUB2 boot loader to device %(dev)s '
- 'failed with %(err)s. Attempted 3 times.' %
- {'dev': device, 'err': e})
+ 'failed with %(err)s.' % {'dev': device, 'err': e})
LOG.error(error_msg)
raise errors.CommandExecutionError(error_msg)