summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsthakkar <sthakkar@vmware.com>2013-01-21 17:32:28 -0800
committersthakkar <sthakkar@vmware.com>2013-01-23 20:41:24 -0800
commitff5fb29498709d8510eedb0f787d916eeb9fccba (patch)
tree7cab88433104cba32237962721053cc8e4931aa4
parent798d2c7d54bbf302587cbe584629aad1ea8e3584 (diff)
downloadpython-neutronclient-ff5fb29498709d8510eedb0f787d916eeb9fccba.tar.gz
Fix quantum client example
Example references an incorrect method. list_net() should be list_networks() Change-Id: Ia1f4e13898964da63cb9c9da75270236aa6587b6
-rw-r--r--quantumclient/v2_0/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantumclient/v2_0/client.py b/quantumclient/v2_0/client.py
index c7937fa..b3871ad 100644
--- a/quantumclient/v2_0/client.py
+++ b/quantumclient/v2_0/client.py
@@ -132,7 +132,7 @@ class Client(object):
tenant_name=TENANT_NAME,
auth_url=KEYSTONE_URL)
- >>> nets = quantum.list_nets()
+ >>> nets = quantum.list_networks()
...
"""