mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Fixed several typos throughout the codebase
Change-Id: I048ee857fc1215fea7f60978364894e1b5abdf66
This commit is contained in:
parent
870e7ddbcc
commit
a8087a6c8b
4 changed files with 4 additions and 4 deletions
|
|
@ -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::
|
||||
|
||||
|
|
|
|||
|
|
@ -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']
|
||||
|
||||
|
|
|
|||
|
|
@ -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')}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue