Add missing ws seperator between words part 2

This is to add missing ws seperator between words

Change-Id: I83b74ccde5dfc7e74f55a4df6fa1ad67442042a4
This commit is contained in:
Sergey Vilgelm 2018-11-20 16:10:47 -06:00 committed by Ken'ichi Ohmichi
parent 3e8af9d6cb
commit 36fdd20cb1
4 changed files with 6 additions and 8 deletions

View File

@ -185,7 +185,7 @@ class ListUserImagesTest(base.BaseV2ImageTest):
for disk_fmt in disk_fmts]
for (container_fmt, disk_fmt) in all_pairs[:6]:
LOG.debug("Creating an image"
LOG.debug("Creating an image "
"(Container format: %s, Disk format: %s).",
container_fmt, disk_fmt)
cls._create_standard_image(container_fmt, disk_fmt)

View File

@ -167,7 +167,7 @@ class NetworksTestDHCPv6(base.BaseNetworkTest):
self._clean_network()
self.assertNotEqual(eui_ip, real_ip,
('Real port IP %s equal to EUI-64 %s when '
'ipv6_ra_mode=Off and ipv6_address_mode=Off,'
'ipv6_ra_mode=Off and ipv6_address_mode=Off, '
'but shall be taken from fixed IPs') % (
real_ip, eui_ip))

View File

@ -101,7 +101,7 @@ AuthGroup = [
deprecated_group='identity'),
cfg.StrOpt('admin_domain_name',
default='Default',
help="Admin domain name for authentication (Keystone V3)."
help="Admin domain name for authentication (Keystone V3). "
"The same domain applies to user and project",
deprecated_group='identity'),
]
@ -191,7 +191,7 @@ IdentityGroup = [
help="The number of passwords for a user that must be unique "
"before an old password can be reused. This only takes "
"effect when identity-feature-enabled.security_compliance "
"is set to 'True'."
"is set to 'True'. "
"This config option corresponds to keystone.conf: "
"security_compliance.unique_last_password_count, whose "
"default value is 0 meaning disabling this feature. "

View File

@ -114,8 +114,7 @@ class InheritedRolesClient(rest_client.RestClient):
def check_user_has_flag_on_inherited_to_project(
self, project_id, user_id, role_id):
"""Checks whether a user has a role assignment"""
"""with the inherited_to_projects flag on a project."""
"""Check if user has an inherited project role on project"""
resp, body = self.head(
"OS-INHERIT/projects/%s/users/%s/roles/%s/inherited_to_projects"
% (project_id, user_id, role_id))
@ -142,8 +141,7 @@ class InheritedRolesClient(rest_client.RestClient):
def check_group_has_flag_on_inherited_to_project(
self, project_id, group_id, role_id):
"""Checks whether a group has a role assignment"""
"""with the inherited_to_projects flag on a project."""
"""Check if group has an inherited project role on project"""
resp, body = self.head(
"OS-INHERIT/projects/%s/groups/%s/roles/%s/inherited_to_projects"
% (project_id, group_id, role_id))