From 2fabd773f08bf641d5b673b0746e2edc4c1a560b Mon Sep 17 00:00:00 2001 From: ramishra Date: Fri, 14 May 2021 14:42:40 +0530 Subject: [PATCH] Fix error message for vip provision It's using the wrong argument. Change-Id: I96959dd8c7945cb8ea37d75c3922e64a10e89199 --- tripleoclient/v2/overcloud_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleoclient/v2/overcloud_network.py b/tripleoclient/v2/overcloud_network.py index 63f6edc8e..bfcb25e47 100644 --- a/tripleoclient/v2/overcloud_network.py +++ b/tripleoclient/v2/overcloud_network.py @@ -226,7 +226,7 @@ class OvercloudVirtualIPsProvision(command.Command): if not os.path.exists(vip_file_path): raise oscexc.CommandError( "Virtual IPs configuration file does not exist:" - " %s" % parsed_args.networks_file) + " %s" % parsed_args.vip_file) overwrite = parsed_args.yes if (os.path.exists(output_path) and not overwrite