summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-07-28 08:45:34 +0000
committerGerrit Code Review <review@openstack.org>2015-07-28 08:45:34 +0000
commiteee632643030fa5c5ae5b6498924ee94fe2bb3c8 (patch)
tree06b30ba55c321252ec0da2e946466411cb840fcb
parentf8bcab0a2e3b6485f9aee4b7fb5fc5a1e5b3dab1 (diff)
parentb874ebec1f76ca49386b50fba84923d918c82461 (diff)
downloadpython-heatclient-eee632643030fa5c5ae5b6498924ee94fe2bb3c8.tar.gz
Merge "Fix docstrings and add missing"
-rw-r--r--heatclient/v1/shell.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py
index 535b5dd..2a7e897 100644
--- a/heatclient/v1/shell.py
+++ b/heatclient/v1/shell.py
@@ -1156,7 +1156,7 @@ def do_config_show(hc, args):
@utils.arg('id', metavar='<ID>', nargs='+',
help=_('IDs of the configurations to delete.'))
def do_config_delete(hc, args):
- '''Delete software configurations.'''
+ '''Delete a software configuration.'''
failure_count = 0
for config_id in args.id:
@@ -1203,6 +1203,7 @@ def do_config_delete(hc, args):
'deployment. This is used to apply a sort order to the '
'list of configurations currently deployed to the server.'))
def do_deployment_create(hc, args):
+ '''Create a software deployment.'''
config = {}
if args.config:
try:
@@ -1266,7 +1267,7 @@ def do_deployment_metadata_show(hc, args):
@utils.arg('id', metavar='<ID>', nargs='+',
help=_('IDs of the deployments to delete.'))
def do_deployment_delete(hc, args):
- '''Delete software deployments.'''
+ '''Delete a software deployment.'''
failure_count = 0
for deploy_id in args.id:
@@ -1290,7 +1291,7 @@ def do_deployment_delete(hc, args):
help=_('The output value format, one of: raw, json'),
default='raw')
def do_deployment_output_show(hc, args):
- '''Show a specific stack output.'''
+ '''Show a specific deployment output.'''
if (not args.all and args.output is None or
args.all and args.output is not None):
raise exc.CommandError(