Fix some init error

Fix some init error

Change-Id: I266d9a24bbc44626839bab701cafd8ed86c9cd75
This commit is contained in:
zhu.rong 2015-11-11 11:11:10 +08:00
parent dc39bad499
commit 64b09cda56
2 changed files with 4 additions and 5 deletions

View File

@ -7,7 +7,6 @@ Evoque is a ticket service for OpenStack.
* `Blueprints`_ - feature specifications * `Blueprints`_ - feature specifications
* `Bugs`_ - issue tracking * `Bugs`_ - issue tracking
* `Source`_ * `Source`_
* `Specs`_
* `How to Contribute`_ * `How to Contribute`_
.. _Launchpad project: https://launchpad.net/python-evoqueclient .. _Launchpad project: https://launchpad.net/python-evoqueclient

View File

@ -67,7 +67,7 @@ class EvoqueShell(object):
parser.add_argument('-k', '--insecure', parser.add_argument('-k', '--insecure',
default=False, default=False,
action='store_true', action='store_true',
help="Explicitly allow muranoclient to perform " help="Explicitly allow evoqueclient to perform "
"\"insecure\" SSL (https) requests. " "\"insecure\" SSL (https) requests. "
"The server's certificate will " "The server's certificate will "
"not be verified against any certificate " "not be verified against any certificate "
@ -280,11 +280,11 @@ class EvoqueShell(object):
" env[OS_AUTH_TOKEN]") " env[OS_AUTH_TOKEN]")
if args.os_no_client_auth: if args.os_no_client_auth:
if not args.murano_url: if not args.evoque_url:
raise exc.CommandError( raise exc.CommandError(
"If you specify --os-no-client-auth" "If you specify --os-no-client-auth"
" you must also specify a Murano API URL" " you must also specify a Evoque API URL"
" via either --murano-url or env[MURANO_URL]") " via either --evoque-url or env[EVOQUE_URL]")
else: else:
# Tenant name or ID is needed to make keystoneclient retrieve a # Tenant name or ID is needed to make keystoneclient retrieve a
# service catalog, it's not required if os_no_client_auth is # service catalog, it's not required if os_no_client_auth is