summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwingwj <wingwj@gmail.com>2014-02-25 14:17:35 +0800
committerwingwj <wingwj@gmail.com>2014-02-25 14:17:35 +0800
commit5461af9c6ca0a56267b28b83930503a9d60214a9 (patch)
tree4c6e9db52b06d154e633fea88a8e06bf9851b15d
parentbd72fb0a2e6ebb0b4d778d9287d89b8151c05d89 (diff)
downloadpython-novaclient-5461af9c6ca0a56267b28b83930503a9d60214a9.tar.gz
Fix typo in novaclient2.16.0
sapshot --> snapshot messanges --> messages Change-Id: I21d9f3bd02c435f92f8ba20e85898d7a11e6a0af
-rw-r--r--novaclient/client.py2
-rw-r--r--novaclient/v1_1/shell.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/novaclient/client.py b/novaclient/client.py
index 8ec471cf..a80ffb28 100644
--- a/novaclient/client.py
+++ b/novaclient/client.py
@@ -116,7 +116,7 @@ class HTTPClient(object):
rql.addHandler(ch)
# Since we have already setup the root logger on debug, we
# have to set it up here on WARNING (its original level)
- # otherwise we will get all the requests logging messanges
+ # otherwise we will get all the requests logging messages
rql.setLevel(logging.WARNING)
# requests within the same session can reuse TCP connections from pool
self.http = requests.Session()
diff --git a/novaclient/v1_1/shell.py b/novaclient/v1_1/shell.py
index 5f0858b5..c7a52098 100644
--- a/novaclient/v1_1/shell.py
+++ b/novaclient/v1_1/shell.py
@@ -316,7 +316,7 @@ def _boot(cs, args, reservation_id=None, min_count=None, max_count=None):
@utils.arg('--snapshot',
default=None,
metavar="<snapshot_id>",
- help=_("Sapshot ID to boot from (will create a volume)."))
+ help=_("Snapshot ID to boot from (will create a volume)."))
@utils.arg('--num-instances',
default=None,
type=int,