Fix missing spaces in strings
Where strings are continued across multiple lines, it's easy to miss a
space. This fixes several incorrect strings, cleans up some formatting
(don't line break inside a format specifier) and fixes typos.
Change-Id: Id781b16cad03c32973a67c02ad22ce4459c6d126
diff --git a/common/config.py b/common/config.py
index f7b9d6c..2236a0c 100644
--- a/common/config.py
+++ b/common/config.py
@@ -48,16 +48,16 @@
cfg.StrOpt('auth_url',
help="Full URI of the OpenStack Identity API (Keystone)"),
cfg.StrOpt('user_domain_name',
- help="User domain name, if keystone v3 auth_url"
+ help="User domain name, if keystone v3 auth_url "
"is used"),
cfg.StrOpt('project_domain_name',
- help="Project domain name, if keystone v3 auth_url"
+ help="Project domain name, if keystone v3 auth_url "
"is used"),
cfg.StrOpt('user_domain_id',
- help="User domain id, if keystone v3 auth_url"
+ help="User domain id, if keystone v3 auth_url "
"is used"),
cfg.StrOpt('project_domain_id',
- help="Project domain id, if keystone v3 auth_url"
+ help="Project domain id, if keystone v3 auth_url "
"is used"),
cfg.StrOpt('region',
help="The region name to use"),
@@ -125,7 +125,7 @@
help="Skip all functional tests"),
cfg.ListOpt('skip_functional_test_list',
help="List of functional test class or class.method "
- "names to skip ex. AutoscalingGroupTest,"
+ "names to skip ex. AutoscalingGroupTest, "
"InstanceGroupBasicTest.test_size_updates_work"),
cfg.ListOpt('skip_scenario_test_list',
help="List of scenario test class or class.method "
@@ -143,7 +143,7 @@
"server."),
cfg.IntOpt('sighup_timeout',
default=120,
- help="Timeout in seconds to wait for adding or removing child"
+ help="Timeout in seconds to wait for adding or removing child "
"process after receiving of sighup signal"),
cfg.IntOpt('sighup_config_edit_retries',
default=10,