Add missing ws separator between words

This is to add missing ws separator between words.

Change-Id: Iad9e39b33e7c7c613f833468fbb13cdd3ec2cb96
This commit is contained in:
zhufl 2018-11-21 11:05:21 +08:00
parent 726f343832
commit ef63f8c2cb
5 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,7 @@ OPTS = {"openstack": [
cfg.IntOpt("flavor_ref_alt_ram",
default="128",
deprecated_group="tempest",
help="Alternate reference flavor RAM size used by test that"
help="Alternate reference flavor RAM size used by test that "
"need two flavors, like those that resize an instance"),
cfg.IntOpt("heat_instance_type_ram",
default="64",

View File

@ -30,7 +30,7 @@ from rally_openstack.scenarios.ceilometer import utils
platform="openstack")
class CreateMeterAndGetStats(utils.CeilometerScenario):
@logging.log_deprecated("Use 'get_stats' method, now samples are created"
@logging.log_deprecated("Use 'get_stats' method, now samples are created "
"in context", "0.1.2")
def run(self, **kwargs):
"""Create a meter and fetch its statistics.

View File

@ -118,7 +118,7 @@ class CreateAndListVolumeTypes(cinder_utils.CinderBasic):
is_public=is_public)
pool_list = self.admin_cinder.list_types()
msg = ("type not included into list of available types"
msg = ("type not included into list of available types "
"created type: {}\n"
"pool of types: {}\n").format(volume_type, pool_list)
self.assertIn(volume_type.id,

View File

@ -536,7 +536,7 @@ class BootServerAttachVolumeAndListAttachments(utils.NovaScenario,
list_attachments = self._list_attachments(server.id)
for attachment in attachments:
msg = ("attachment not included into list of available"
msg = ("attachment not included into list of available "
"attachments\n attachment: {}\n"
"list attachments: {}").format(attachment, list_attachments)
self.assertIn(attachment, list_attachments, err_msg=msg)

View File

@ -175,8 +175,8 @@ class UnifiedGlanceV1Service(glance_common.UnifiedGlanceMixin, image.Image):
:param remove_props: List of property names to remove
"""
if remove_props is not None:
raise image.RemovePropsException("Remove prop: %s is not"
"supported in"
raise image.RemovePropsException("Remove prop: %s is not "
"supported in "
"glance_v1" % remove_props)
image_obj = self._impl.update_image(
image_id=image_id,