summaryrefslogtreecommitdiff
path: root/heatclient
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2012-12-04 11:46:40 +1300
committerSteve Baker <sbaker@redhat.com>2012-12-04 11:51:34 +1300
commit727d07e667b371bc4a27fe1667c47e907b5d04c4 (patch)
treeabe3c5036cc345834894f6803c2bbea2caee71a3 /heatclient
parent95a0894a3827f06e946c536704b20249fd52cd95 (diff)
downloadpython-heatclient-727d07e667b371bc4a27fe1667c47e907b5d04c4.tar.gz
remove some glanceisms from the docs
Change-Id: Iee3eb218086d3a9810d7f7e0e92500293b90a1f1
Diffstat (limited to 'heatclient')
-rw-r--r--heatclient/exc.py2
-rw-r--r--heatclient/shell.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/heatclient/exc.py b/heatclient/exc.py
index d3d3cab..d768fbf 100644
--- a/heatclient/exc.py
+++ b/heatclient/exc.py
@@ -53,7 +53,7 @@ class HTTPMultipleChoices(HTTPException):
code = 300
def __str__(self):
- self.details = ("Requested version of OpenStack Images API is not"
+ self.details = ("Requested version of Heat API is not"
"available.")
return "%s (HTTP %s) %s" % (self.__class__.__name__, self.code,
self.details)
diff --git a/heatclient/shell.py b/heatclient/shell.py
index 32a3ff8..cf04875 100644
--- a/heatclient/shell.py
+++ b/heatclient/shell.py
@@ -11,7 +11,7 @@
# under the License.
"""
-Command-line interface to the OpenStack Images API.
+Command-line interface to the Heat API.
"""
import argparse
@@ -58,7 +58,7 @@ class HeatShell(object):
parser.add_argument('-k', '--insecure',
default=False,
action='store_true',
- help="Explicitly allow glanceclient to perform \"insecure\" "
+ help="Explicitly allow the client to perform \"insecure\" "
"SSL (https) requests. The server's certificate will "
"not be verified against any certificate authorities. "
"This option should be used with caution.")
@@ -73,7 +73,7 @@ class HeatShell(object):
parser.add_argument('--ca-file',
help='Path of CA SSL certificate(s) used to verify the remote '
- 'server\'s certificate. Without this option glance looks '
+ 'server\'s certificate. Without this option the client looks '
'for the default system CA certificates.')
parser.add_argument('--timeout',