Merge pull request #28448 from shyukri/wip-25030

ceph-volume: util: Use proper param substition
This commit is contained in:
Jan Fajerski 2019-07-24 13:36:27 +02:00 committed by GitHub
commit 14f9b8a133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,9 +214,9 @@ def device_is_mounted(dev, destination=None):
)
return True
else:
logger.info('%s was found as mounted')
logger.info('%s was found as mounted', dev)
return True
logger.info('%s was not found as mounted')
logger.info('%s was not found as mounted', dev)
return False