Fix misspellings in heat-cfnclient

Fix misspellings detected by:
* pip install misspellings
* git ls-files | grep -v locale | misspellings -f -

Change-Id: I99914f3aee2546f4b3a12fa59375a45b306bcfc1
Closes-Bug: #1257295
This commit is contained in:
Shane Wang 2014-02-07 14:15:35 +08:00
parent c60d61a1ab
commit cb66bb57eb
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ DESCRIPTION
heat-cfn is a command-line utility for heat. It is simply an
interface for adding, modifying, and retrieving information about the stacks
belonging to a user. It is a convenience application that talks to the heat
CloudFormation API compatable server.
CloudFormation API compatible server.
CONFIGURATION

View File

@ -132,7 +132,7 @@ class KeystoneStrategy(BaseStrategy):
if 'v2.0' not in auth_url:
auth_url = urlparse.urljoin(auth_url, 'v2.0/')
else:
# If we sucessfully auth'd, then memorize the correct auth_url
# If we successfully auth'd, then memorize the correct auth_url
# for future use.
self.creds['auth_url'] = auth_url
break