From 442b4b6a94517d201f02e5372d001f2ee3c7a721 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Sat, 4 Jun 2016 19:23:15 +0200 Subject: [PATCH] Cleanup help string of install_type parameter The part "The valid types are: binary, source, rdo, rhos" is already a part of the generated kolla-build configuration file ("# Allowed values: binary, source, rdo, rhos"). TrivialFix Change-Id: I87b913c1b650fe54402ea643fc9c774448850f6b --- kolla/common/config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kolla/common/config.py b/kolla/common/config.py index ea890167b1..ccc9587d94 100644 --- a/kolla/common/config.py +++ b/kolla/common/config.py @@ -128,9 +128,7 @@ _CLI_OPTS = [ cfg.StrOpt('type', short='t', default='binary', choices=INSTALL_TYPE_CHOICES, dest='install_type', deprecated_group='kolla-build', - help=('The method of the OpenStack install. The valid' - ' types are: {}'.format( - ', '.join(INSTALL_TYPE_CHOICES)))), + help=('The method of the OpenStack install')), cfg.IntOpt('threads', short='T', default=8, min=1, deprecated_group='kolla-build', help=('The number of threads to use while building.'