mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Modify some help and error messages in ec2creds identityv2
Usually we use "(s)" to show about multi deletion in help message. In addition, I think "EC2 credentials" is better than "EC2 keys" in the error message. Change-Id: I6a6461291542701d87a55d9ea0ea1fda6db04601
This commit is contained in:
parent
5a21eb2555
commit
536c0d9dea
1 changed files with 2 additions and 2 deletions
|
|
@ -94,7 +94,7 @@ class DeleteEC2Creds(command.Command):
|
|||
'access_keys',
|
||||
metavar='<access-key>',
|
||||
nargs='+',
|
||||
help=_('Credentials access keys'),
|
||||
help=_('Credentials access key(s)'),
|
||||
)
|
||||
parser.add_argument(
|
||||
'--user',
|
||||
|
|
@ -121,7 +121,7 @@ class DeleteEC2Creds(command.Command):
|
|||
identity_client.ec2.delete(user, access_key)
|
||||
except Exception as e:
|
||||
result += 1
|
||||
LOG.error(_("Failed to delete EC2 keys with "
|
||||
LOG.error(_("Failed to delete EC2 credentials with "
|
||||
"access key '%(access_key)s': %(e)s")
|
||||
% {'access_key': access_key, 'e': e})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue