From a397af28d0bca03a089b7e88478e90d10fe74ebd Mon Sep 17 00:00:00 2001 From: "Gael Chamoulaud (Strider)" Date: Thu, 20 May 2021 15:11:12 +0200 Subject: [PATCH] Remove --extra-env-vars from the mutually exclusive arg group There is no reason to make --extra-env-vars mutually exclusive with --extra-vars and --extra-vars-file. Only the last two ones should be. This patch fixes this. Signed-off-by: Gael Chamoulaud (Strider) Change-Id: I5c8a0d3a46632ff2ffec35bd07eec233ea9a09cd --- tripleoclient/v1/tripleo_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleoclient/v1/tripleo_validator.py b/tripleoclient/v1/tripleo_validator.py index 68b89f763..f22f9ecbb 100644 --- a/tripleoclient/v1/tripleo_validator.py +++ b/tripleoclient/v1/tripleo_validator.py @@ -299,7 +299,7 @@ class TripleOValidatorRun(command.Command): ) ) - extra_vars_group.add_argument( + parser.add_argument( '--extra-env-vars', metavar="key1=[,key2=val2 --extra-env-vars key3=]", action=parseractions.MultiKeyValueAction,