Document choices using oslo.config interface
... instead of documenting these in descriptions, for better rendering
by oslo-config-generator.
Change-Id: If28db26eee59b9f7f62492d9df44c9bebbd34c28
diff --git a/tempest/config.py b/tempest/config.py
index 7978755..87ada55 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -909,10 +909,11 @@
help='Enable/disable security group rules.'),
cfg.StrOpt('connect_method',
default='floating',
- choices=['fixed', 'floating'],
- help='Default IP type used for validation: '
- '-fixed: uses the first IP belonging to the fixed network '
- '-floating: creates and uses a floating IP'),
+ choices=[('fixed',
+ 'uses the first IP belonging to the fixed network'),
+ ('floating',
+ 'creates and uses a floating IP')],
+ help='Default IP type used for validation'),
cfg.StrOpt('auth_method',
default='keypair',
choices=['keypair'],