summaryrefslogtreecommitdiff
path: root/barbicanclient/barbican_cli
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-10-16 23:21:57 +0000
committerGerrit Code Review <review@openstack.org>2016-10-16 23:21:57 +0000
commite627daa8020fa3c48ced4a0c242add89e7aa8e07 (patch)
tree06b0162e019e98a7bb6d53a7c27b9b604069a741 /barbicanclient/barbican_cli
parent628d9fdc11901dedd76629681e16ace30d1d3796 (diff)
parentc63f20184cea41527707ee4a8830099eb6a1ef06 (diff)
downloadpython-barbicanclient-e627daa8020fa3c48ced4a0c242add89e7aa8e07.tar.gz
Merge "Update Order Create Type Help Dialog"
Diffstat (limited to 'barbicanclient/barbican_cli')
-rw-r--r--barbicanclient/barbican_cli/orders.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/barbicanclient/barbican_cli/orders.py b/barbicanclient/barbican_cli/orders.py
index cbbeacf..d3c4b5c 100644
--- a/barbicanclient/barbican_cli/orders.py
+++ b/barbicanclient/barbican_cli/orders.py
@@ -25,7 +25,9 @@ class CreateOrder(show.ShowOne):
def get_parser(self, prog_name):
parser = super(CreateOrder, self).get_parser(prog_name)
- parser.add_argument('type', help='the type of the order to create.')
+ parser.add_argument('type', help='the type of the order '
+ '(key, asymmetric, certificate)'
+ ' to create.')
parser.add_argument('--name', '-n',
help='a human-friendly name.')
parser.add_argument('--algorithm', '-a', default='aes',