Fix missing print format error

Missing print format will cause 'ValueError: unsupported
format character' error, this is to fix it.

Change-Id: I78f8f3d13257b58c4327522c3617990b38933957
This commit is contained in:
zhufl 2019-04-16 15:33:08 +08:00
parent 73329e1640
commit 5b68201324
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ class NexentaNfsDriver(nfs.NfsDriver):
if capabilities['free_capacity_gb'] < volume['size']:
LOG.error('There is not enough space available on the '
'host %(host)s to migrate volume %(volume), '
'host %(host)s to migrate volume %(volume)s, '
'free space: %(free)d, required: %(size)d',
{'host': host, 'volume': volume['name'],
'free': capabilities['free_capacity_gb'],