Fixed typo in log message.

This commit is contained in:
Christopher Glass 2014-09-12 14:13:36 +02:00
parent ea1f1d2018
commit dac28490aa
1 changed files with 2 additions and 2 deletions

View File

@ -369,9 +369,9 @@ def osdize_dev(dev, osd_format, osd_journal, reformat_osd=False,
subprocess.check_call(cmd)
except subprocess.CalledProcessError as e:
if ignore_errors:
log('Enable to initialize device: {}'.format(dev), WARNING)
log('Unable to initialize device: {}'.format(dev), WARNING)
else:
log('Enable to initialize device: {}'.format(dev), ERROR)
log('Unable to initialize device: {}'.format(dev), ERROR)
raise e