summaryrefslogtreecommitdiffstats
path: root/qtip/cli/utils.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-06-06 06:43:34 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-06-06 06:43:34 +0000
commita1758a360cbc2d59aa0819b78050671b4839e005 (patch)
tree9b98556d85eb24bebada7bfdc6380fd7ad5af562 /qtip/cli/utils.py
parent1b507724e4cd0542b654a96e7b59a6f6463f2848 (diff)
parentcb3795a39882bb97c15ae5c9562faf577334399b (diff)
Merge "Beautify the argument names"
Diffstat (limited to 'qtip/cli/utils.py')
-rw-r--r--qtip/cli/utils.py2
1 files changed, 1 insertions, 1 deletions
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):