Fix typo in log message

This commit is contained in:
Joshua Boniface 2021-09-26 03:35:30 -04:00
parent 7a8eee244a
commit 8e62d5b30b
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ class CephOSDInstance(object):
return False
# 1. Create an empty partition table
logger.out('Creating partitons on block device {}'.format(device), state='i')
logger.out('Creating partitions on block device {}'.format(device), state='i')
retcode, stdout, stderr = common.run_os_command(
'sgdisk --clear {}'.format(device)
)