Skip to content

Commit f4534e5

Browse files
committed
[Trivial]Add missing white spaces between words in log messages
This is to add missing white spaces between words in logs messages. Change-Id: Iee1a859a0adb54fb5e3b925c3facb8178521e82d
1 parent bfdca19 commit f4534e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

nova/cmd/manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2160,7 +2160,7 @@ def heal_allocations(self, max_count=None, verbose=False, dry_run=False,
21602160
return 127
21612161

21622162
if force and not instance_uuid:
2163-
print(_('The --instance flag is required'
2163+
print(_('The --instance flag is required '
21642164
'when using --force flag.'))
21652165
return 127
21662166

nova/policies/server_topology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Control host NUMA node and cpu pinning information
3535
name=BASE_POLICY_NAME % 'host:index',
3636
check_str=base.SYSTEM_READER,
37-
description="Show the NUMA topology data for a server with host"
37+
description="Show the NUMA topology data for a server with host "
3838
"NUMA ID and CPU pinning information",
3939
operations=[
4040
{

nova/virt/libvirt/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def _set_cache_mode(self, conf):
592592
conf.driver_io = "threads"
593593
LOG.warning("The guest disk driver io mode has fallen back "
594594
"from 'native' to 'threads' because the "
595-
"disk cache mode is set as %(cachemode)s, which does"
595+
"disk cache mode is set as %(cachemode)s, which does "
596596
"not use O_DIRECT. See the following bug report "
597597
"for more details: https://launchpad.net/bugs/1841363",
598598
{'cachemode': conf.driver_cache})

0 commit comments

Comments
 (0)