summaryrefslogtreecommitdiff
path: root/troveclient/base.py
diff options
context:
space:
mode:
authorNikhil Manchanda <SlickNik@gmail.com>2013-12-03 15:49:16 -0800
committerNikhil Manchanda <SlickNik@gmail.com>2013-12-03 15:50:01 -0800
commitc1e46dcd00d589464a97d14b3bfc8fcf87ace707 (patch)
tree6c33a553e81986ea9e33238abb636d25821b194c /troveclient/base.py
parent68f8ae0d9cff82ea606a101313375fda989c25ad (diff)
downloadpython-troveclient-c1e46dcd00d589464a97d14b3bfc8fcf87ace707.tar.gz
Fixed misspellings of common words
Fixed misspelling of common words found by the 'misspellings' tool. Closes-Bug: #1257531 Change-Id: Ic6bedbce3a242d6e1340ecc442d29605af8be9a4
Diffstat (limited to 'troveclient/base.py')
-rw-r--r--troveclient/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/troveclient/base.py b/troveclient/base.py
index 7f4adef..6f9b481 100644
--- a/troveclient/base.py
+++ b/troveclient/base.py
@@ -112,7 +112,7 @@ class Manager(utils.HookableMixin):
try:
os.makedirs(cache_dir, 0o755)
except OSError:
- # NOTE(kiall): This is typicaly either permission denied while
+ # NOTE(kiall): This is typically either permission denied while
# attempting to create the directory, or the directory
# already exists. Either way, don't fail.
pass
@@ -126,7 +126,7 @@ class Manager(utils.HookableMixin):
try:
setattr(self, cache_attr, open(path, mode))
except IOError:
- # NOTE(kiall): This is typicaly a permission denied while
+ # NOTE(kiall): This is typically a permission denied while
# attempting to write the cache file.
pass