This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit a92fbb71b72ebf95b4500ff4d30dbcee57678be3
Author: Tio Gobin <tio.go...@outscale.com>
AuthorDate: Wed Sep 2 15:34:54 2020 +0200

    Corrected a typo
---
 docs/examples/compute/outscale/list_nodes.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/examples/compute/outscale/list_nodes.py 
b/docs/examples/compute/outscale/list_nodes.py
index 86fbd4d..f9f418f 100644
--- a/docs/examples/compute/outscale/list_nodes.py
+++ b/docs/examples/compute/outscale/list_nodes.py
@@ -9,6 +9,6 @@ service = 'api'
 Driver = get_driver(Provider.OUTSCALE)
 driver = Driver(key=key, secret=secret, region=region, service=service)
 
-node = driver.list_nodes()
+nodes = driver.list_nodes()
 
-print(node)
+print(nodes)

Reply via email to