Fixed several typos throughout the codebase
Change-Id: I048ee857fc1215fea7f60978364894e1b5abdf66
This commit is contained in:
parent
870e7ddbcc
commit
a8087a6c8b
@ -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
|
in the prompt is stored in keyring. From next time, the password is read from
|
||||||
keyring, if it is not provided above (in plaintext).
|
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
|
and a URL pointing directly to the service API that presumably was acquired
|
||||||
from the Service Catalog::
|
from the Service Catalog::
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ class SetProject(command.Command):
|
|||||||
if 'id' in kwargs:
|
if 'id' in kwargs:
|
||||||
del kwargs['id']
|
del kwargs['id']
|
||||||
if 'name' in kwargs:
|
if 'name' in kwargs:
|
||||||
# Hack around borken Identity API arg names
|
# Hack around broken Identity API arg names
|
||||||
kwargs['tenant_name'] = kwargs['name']
|
kwargs['tenant_name'] = kwargs['name']
|
||||||
del kwargs['name']
|
del kwargs['name']
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ class SetProject(command.Command):
|
|||||||
if 'id' in kwargs:
|
if 'id' in kwargs:
|
||||||
del kwargs['id']
|
del kwargs['id']
|
||||||
if 'domain_id' in kwargs:
|
if 'domain_id' in kwargs:
|
||||||
# Hack around borken Identity API arg names
|
# Hack around broken Identity API arg names
|
||||||
kwargs.update(
|
kwargs.update(
|
||||||
{'domain': kwargs.pop('domain_id')}
|
{'domain': kwargs.pop('domain_id')}
|
||||||
)
|
)
|
||||||
|
@ -88,7 +88,7 @@ class TestKeyValueAction(utils.TestCase):
|
|||||||
|
|
||||||
failhere = None
|
failhere = None
|
||||||
actual = getattr(results, 'property', {})
|
actual = getattr(results, 'property', {})
|
||||||
# Verify non-existant red key
|
# Verify non-existent red key
|
||||||
try:
|
try:
|
||||||
failhere = actual['red']
|
failhere = actual['red']
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
Loading…
Reference in New Issue
Block a user