Fixed several typos throughout the codebase

Change-Id: I048ee857fc1215fea7f60978364894e1b5abdf66
This commit is contained in:
Alex Gaynor 2014-05-21 07:47:29 -07:00
parent 870e7ddbcc
commit a8087a6c8b
4 changed files with 4 additions and 4 deletions

View File

@ -94,7 +94,7 @@ prompted to provide one securely. If keyring is enabled, the password entered
in the prompt is stored in keyring. From next time, the password is read from
keyring, if it is not provided above (in plaintext).
The token flow variation for authentication uses an already-aquired token
The token flow variation for authentication uses an already-acquired token
and a URL pointing directly to the service API that presumably was acquired
from the Service Catalog::

View File

@ -214,7 +214,7 @@ class SetProject(command.Command):
if 'id' in kwargs:
del kwargs['id']
if 'name' in kwargs:
# Hack around borken Identity API arg names
# Hack around broken Identity API arg names
kwargs['tenant_name'] = kwargs['name']
del kwargs['name']

View File

@ -251,7 +251,7 @@ class SetProject(command.Command):
if 'id' in kwargs:
del kwargs['id']
if 'domain_id' in kwargs:
# Hack around borken Identity API arg names
# Hack around broken Identity API arg names
kwargs.update(
{'domain': kwargs.pop('domain_id')}
)

View File

@ -88,7 +88,7 @@ class TestKeyValueAction(utils.TestCase):
failhere = None
actual = getattr(results, 'property', {})
# Verify non-existant red key
# Verify non-existent red key
try:
failhere = actual['red']
except Exception as e: