Merge "Fixed few typos"

This commit is contained in:
Jenkins 2015-08-13 23:41:34 +00:00 committed by Gerrit Code Review
commit 297610de3a
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ class HTTPSClientAuthConnection(http_client.HTTPSConnection):
if self._tunnel_host:
self.sock = sock
self._tunnel()
# Check CA file unless 'insecure' is specificed
# Check CA file unless 'insecure' is specified
if self.insecure is True:
self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file,
cert_reqs=ssl.CERT_NONE)

View File

@ -446,7 +446,7 @@ class Driver(base.Driver):
Removes any incomplete cache entries older than a
supplied modified time.
:param older_than: Files written to on or before this timestemp
:param older_than: Files written to on or before this timestamp
will be deleted.
"""
for path in self.get_cache_files(self.incomplete_dir):