Merge "Spelling: compatibile->compatible"

This commit is contained in:
Jenkins
2013-01-08 15:21:49 +00:00
committed by Gerrit Code Review

View File

@@ -321,7 +321,7 @@ def do_user_role_list(kc, args):
@utils.arg('--tenant-id', metavar='<tenant-id>', help='Tenant ID') @utils.arg('--tenant-id', metavar='<tenant-id>', help='Tenant ID')
@utils.arg('--tenant_id', help=argparse.SUPPRESS) @utils.arg('--tenant_id', help=argparse.SUPPRESS)
def do_ec2_credentials_create(kc, args): def do_ec2_credentials_create(kc, args):
"""Create EC2-compatibile credentials for user per tenant""" """Create EC2-compatible credentials for user per tenant"""
if not args.tenant_id: if not args.tenant_id:
# use the authenticated tenant id as a default # use the authenticated tenant id as a default
args.tenant_id = kc.auth_tenant_id args.tenant_id = kc.auth_tenant_id
@@ -337,7 +337,7 @@ def do_ec2_credentials_create(kc, args):
@utils.arg('--access', metavar='<access-key>', required=True, @utils.arg('--access', metavar='<access-key>', required=True,
help='Access Key') help='Access Key')
def do_ec2_credentials_get(kc, args): def do_ec2_credentials_get(kc, args):
"""Display EC2-compatibile credentials""" """Display EC2-compatible credentials"""
if not args.user_id: if not args.user_id:
# use the authenticated user id as a default # use the authenticated user id as a default
args.user_id = kc.auth_user_id args.user_id = kc.auth_user_id
@@ -349,7 +349,7 @@ def do_ec2_credentials_get(kc, args):
@utils.arg('--user-id', metavar='<user-id>', help='User ID') @utils.arg('--user-id', metavar='<user-id>', help='User ID')
@utils.arg('--user_id', help=argparse.SUPPRESS) @utils.arg('--user_id', help=argparse.SUPPRESS)
def do_ec2_credentials_list(kc, args): def do_ec2_credentials_list(kc, args):
"""List EC2-compatibile credentials for a user""" """List EC2-compatible credentials for a user"""
if not args.user_id: if not args.user_id:
# use the authenticated user id as a default # use the authenticated user id as a default
args.user_id = kc.auth_user_id args.user_id = kc.auth_user_id
@@ -369,7 +369,7 @@ def do_ec2_credentials_list(kc, args):
@utils.arg('--access', metavar='<access-key>', required=True, @utils.arg('--access', metavar='<access-key>', required=True,
help='Access Key') help='Access Key')
def do_ec2_credentials_delete(kc, args): def do_ec2_credentials_delete(kc, args):
"""Delete EC2-compatibile credentials""" """Delete EC2-compatible credentials"""
if not args.user_id: if not args.user_id:
# use the authenticated user id as a default # use the authenticated user id as a default
args.user_id = kc.auth_user_id args.user_id = kc.auth_user_id