summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authortanlin <lin.tan@intel.com>2014-06-11 17:36:37 +0800
committerLin Tan <lin.tan@intel.com>2014-06-11 09:56:36 +0000
commitce212218cf66afc9e1938628274a5b0cf0fb009a (patch)
tree1515d13192dc04f3f334446154976c15bec6d5de /tools
parent5a78fdf4eca4d74ce32c6e31d1e01ee1d21ae06d (diff)
downloadpython-heatclient-ce212218cf66afc9e1938628274a5b0cf0fb009a.tar.gz
Append extra space after command in bash_completion
Unlike NovaClient or other Clients in OpenStack, there is no space append after command in Heat Client. That means if I try to run 'heat stack-delete', I have to manually append the space and then append the thing I want to delete. This correction will help Heat Client to be more convenient for operators. Change-Id: I229653f0a1ecc2794cdb8006c22a70882084d7e1
Diffstat (limited to 'tools')
-rw-r--r--tools/heat.bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/heat.bash_completion b/tools/heat.bash_completion
index 457c305..a04de1a 100644
--- a/tools/heat.bash_completion
+++ b/tools/heat.bash_completion
@@ -24,4 +24,4 @@ _heat()
fi
return 0
}
-complete -o default -o nospace -F _heat heat
+complete -o default -F _heat heat