Misspelling in message
Misspelling "separated" in the message :
"A list of backend names seperated by comma ."
Should be "A list of backend names separated by comma. "
Totally 1 occasion in Tempest base code
replace " ." also with ". " in this line, too.
Change-Id: I5f863247cc8d4171618a8948ea7daadc9fd84528
diff --git a/tempest/config.py b/tempest/config.py
index 8f2ca4b..1fc55d9 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -737,7 +737,7 @@
deprecated_for_removal=True),
cfg.ListOpt('backend_names',
default=['BACKEND_1', 'BACKEND_2'],
- help='A list of backend names seperated by comma .'
+ help='A list of backend names separated by comma. '
'The backend name must be declared in cinder.conf',
deprecated_opts=[cfg.DeprecatedOpt('BACKEND_1',
group='volume'),