From cb3795a39882bb97c15ae5c9562faf577334399b Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Mon, 5 Jun 2017 21:51:51 +0800 Subject: Beautify the argument names - keep the argument consisten with OPNFV convention - installer-ip is not used because in fact we use host address instead - remove optional argurment from prompt Change-Id: I3db3cf53b62cc86e143bc59a7dd8bb83d0f74b7d Signed-off-by: Yujun Zhang --- qtip/cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qtip/cli/utils.py') diff --git a/qtip/cli/utils.py b/qtip/cli/utils.py index 0f0e7e95..331d2000 100644 --- a/qtip/cli/utils.py +++ b/qtip/cli/utils.py @@ -19,7 +19,7 @@ QTIP_ANSIBLE_ROLES = path.join(QTIP_PACKAGE, 'resources', 'ansible_roles') def join_vars(**kwargs): - return " ".join(["{}={}".format(variable, value) for variable, value in kwargs.items()]) + return " ".join(["{}={}".format(variable, value) for variable, value in kwargs.items() if value is not None]) def table(name, components): -- cgit 1.2.3-korg