Add missing ws seperator between words

This is to add missing ws seperator between words, usually
in log messages.

Change-Id: I71bf4c5b5be4dbc89a28bf243b7d11cf1d612ab4
This commit is contained in:
zhufl 2018-11-16 16:37:21 +08:00 committed by Eric Fried
parent c1de096098
commit 8545ba2af7
14 changed files with 22 additions and 22 deletions

View File

@ -1413,9 +1413,10 @@ class CellV2Commands(object):
if instance:
say('The instance with uuid %s has been deleted.'
% uuid)
say('Execute `nova-manage db archive_deleted_rows`'
'command to archive this deleted instance and'
'remove its instance_mapping.')
say('Execute '
'`nova-manage db archive_deleted_rows` '
'command to archive this deleted '
'instance and remove its instance_mapping.')
return 3
except exception.InstanceNotFound:
# instance is archived

View File

@ -698,12 +698,12 @@ http://man7.org/linux/man-pages/man7/random.7.html.
cfg.ListOpt('uid_maps',
default=[],
help='List of uid targets and ranges.'
'Syntax is guest-uid:host-uid:count'
'Syntax is guest-uid:host-uid:count. '
'Maximum of 5 allowed.'),
cfg.ListOpt('gid_maps',
default=[],
help='List of guid targets and ranges.'
'Syntax is guest-gid:host-gid:count'
'Syntax is guest-gid:host-gid:count. '
'Maximum of 5 allowed.'),
cfg.IntOpt('realtime_scheduler_priority',
default=1,

View File

@ -360,8 +360,7 @@ def find_guest_agent(base_dir):
# required
LOG.info('XenServer tools installed in this '
'image are capable of network injection. '
'Networking files will not be'
'manipulated')
'Networking files will not be manipulated')
return True
xe_daemon_filename = os.path.join(base_dir,
'usr', 'sbin', 'xe-daemon')

View File

@ -2369,8 +2369,8 @@ class VMOps(object):
# passed from admin user, so we need this check until
# block_migration flag is removed from API
if not pooled_migrate:
reason = _("Destination host is not in the same shared storage"
"pool as source host %s.") % src
reason = _("Destination host is not in the same shared "
"storage pool as source host %s.") % src
raise exception.MigrationPreCheckError(reason=reason)
# TODO(johngarbutt) we currently assume
# instance is on a SR shared with other destination