diff options
| author | sunyajing <yajing.sun@easystack.cn> | 2016-06-06 13:16:55 +0800 |
|---|---|---|
| committer | Steve Martinelli <s.martinelli@gmail.com> | 2016-06-06 06:50:13 +0000 |
| commit | 5b317936cb04382291c56edd03d7c4c8b46671ad (patch) | |
| tree | bab43a6d718cc95eb263bfdabefe8fffc344f187 /openstackclient/compute | |
| parent | 3078540161e35cee89cd87fccc9b9561690ad6b1 (diff) | |
| download | python-openstackclient-5b317936cb04382291c56edd03d7c4c8b46671ad.tar.gz | |
fix keypair help msg
keypair delete and keypair show commands cannot work on keypair ID
Change-Id: I958fcd2ed184706b28d63cc9c73a8b566e86a16c
Closes-Bug:#1588701
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/v2/keypair.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/v2/keypair.py b/openstackclient/compute/v2/keypair.py index 8a58e8f2..8af209fe 100644 --- a/openstackclient/compute/v2/keypair.py +++ b/openstackclient/compute/v2/keypair.py @@ -84,7 +84,7 @@ class DeleteKeypair(command.Command): parser.add_argument( 'name', metavar='<key>', - help=_("Public key to delete") + help=_("Public key to delete (name only)") ) return parser @@ -118,7 +118,7 @@ class ShowKeypair(command.ShowOne): parser.add_argument( 'name', metavar='<key>', - help=_("Public key to display") + help=_("Public key to display (name only)") ) parser.add_argument( '--public-key', |
