Fix typo on class Client sample

Current Client sample doesn't work because the imported class is not
used in the sample. This patch fixes it.

Change-Id: I01d4ec277a8858a14f4e3a50b8de130aa5a4f0b5
This commit is contained in:
Ken'ichi Ohmichi 2015-04-17 05:35:54 +00:00
parent 3681c186f7
commit c4d2f92116
1 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ class Client(object):
>>> from keystoneclient.auth.identity import v2
>>> from keystoneclient import session
>>> from novaclient.client import Client
>>> from novaclient import client
>>> auth = v2.Password(auth_url=AUTH_URL,
username=USERNAME,
password=PASSWORD,
@ -72,9 +72,9 @@ class Client(object):
Then call methods on its managers::
>>> client.servers.list()
>>> nova.servers.list()
...
>>> client.flavors.list()
>>> nova.flavors.list()
...
It is also possible to use an instance as a context manager in which