remove some glanceisms from the docs
Change-Id: Iee3eb218086d3a9810d7f7e0e92500293b90a1f1
This commit is contained in:
parent
95a0894a38
commit
727d07e667
@ -53,7 +53,7 @@ class HTTPMultipleChoices(HTTPException):
|
|||||||
code = 300
|
code = 300
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
self.details = ("Requested version of OpenStack Images API is not"
|
self.details = ("Requested version of Heat API is not"
|
||||||
"available.")
|
"available.")
|
||||||
return "%s (HTTP %s) %s" % (self.__class__.__name__, self.code,
|
return "%s (HTTP %s) %s" % (self.__class__.__name__, self.code,
|
||||||
self.details)
|
self.details)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Command-line interface to the OpenStack Images API.
|
Command-line interface to the Heat API.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
@ -58,7 +58,7 @@ class HeatShell(object):
|
|||||||
parser.add_argument('-k', '--insecure',
|
parser.add_argument('-k', '--insecure',
|
||||||
default=False,
|
default=False,
|
||||||
action='store_true',
|
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 "
|
"SSL (https) requests. The server's certificate will "
|
||||||
"not be verified against any certificate authorities. "
|
"not be verified against any certificate authorities. "
|
||||||
"This option should be used with caution.")
|
"This option should be used with caution.")
|
||||||
@ -73,7 +73,7 @@ class HeatShell(object):
|
|||||||
|
|
||||||
parser.add_argument('--ca-file',
|
parser.add_argument('--ca-file',
|
||||||
help='Path of CA SSL certificate(s) used to verify the remote '
|
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.')
|
'for the default system CA certificates.')
|
||||||
|
|
||||||
parser.add_argument('--timeout',
|
parser.add_argument('--timeout',
|
||||||
|
Loading…
Reference in New Issue
Block a user