Merge "Add required spaces in log messages"

This commit is contained in:
Jenkins 2014-09-29 06:26:28 +00:00 committed by Gerrit Code Review
commit bfd861ab82
3 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ class LinuxSCSI(executor.Executor):
root_helper=self._root_helper)
except putils.ProcessExecutionError as exc:
msg = _("Failed to flush IO buffers prior to removing"
"device: (%(code)s)") % {'code': exc.exit_code}
" device: (%(code)s)") % {'code': exc.exit_code}
LOG.warn(msg)
def flush_multipath_device(self, device):

View File

@ -185,7 +185,7 @@ class API(base.Base):
except Exception:
donor_reservations = None
LOG.exception(_("Failed to update quota donating volume"
"transfer id %s") % transfer_id)
" transfer id %s") % transfer_id)
try:
# Transfer ownership of the volume now, must use an elevated

View File

@ -436,7 +436,7 @@ class HuaweiTFCDriver(driver.FibreChannelDriver):
"""Check for wwpns in connector."""
if 'wwpns' not in connector:
err_msg = (_('validate_connector: The FC driver requires the'
'wwpns in the connector.'))
' wwpns in the connector.'))
LOG.error(err_msg)
raise exception.VolumeBackendAPIException(data=err_msg)