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:
Huanxuan Ao 2016-07-12 15:23:47 +08:00
parent 5a21eb2555
commit 536c0d9dea

View File

@ -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})