Fix misspellings in python-glanceclient

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

Change-Id: I504521e702c675640ab3869c608fa96edd2477b4
Closes-Bug: #1257295
This commit is contained in:
Shane Wang 2014-02-07 13:31:07 +08:00
parent 4a41358cea
commit 0cda69f6a5
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
# This is here for compatability purposes. Once all known OpenStack clients
# This is here for compatibility purposes. Once all known OpenStack clients
# are updated to use glanceclient.exc, this file should be removed
from glanceclient.exc import *

View File

@ -44,7 +44,7 @@ class TestVerifiedHTTPSConnection(testtools.TestCase):
def test_ssl_init_cert_no_key(self):
"""
Test VerifiedHTTPSConnection: absense of SSL key file.
Test VerifiedHTTPSConnection: absence of SSL key file.
"""
cert_file = os.path.join(TEST_VAR_DIR, 'certificate.crt')
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')
@ -58,7 +58,7 @@ class TestVerifiedHTTPSConnection(testtools.TestCase):
def test_ssl_init_key_no_cert(self):
"""
Test VerifiedHTTPSConnection: absense of SSL cert file.
Test VerifiedHTTPSConnection: absence of SSL cert file.
"""
key_file = os.path.join(TEST_VAR_DIR, 'privatekey.key')
cacert = os.path.join(TEST_VAR_DIR, 'ca.crt')