Three attempts message is incorrect

The code that is covered in this exception block
does not actually retry three times, so it seems better
to have the message not reference that it does.

Change-Id: I0cc19aab65aa9ba4d73a8842390b712f7f63925c
This commit is contained in:
Joshua Harlow 2015-09-02 16:27:41 -07:00
parent b30efc1c7d
commit e9d2bfe580
1 changed files with 1 additions and 2 deletions

View File

@ -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)