Repository: libcloud Updated Branches: refs/heads/trunk 1ed588869 -> 03c871438
Fixed variable used in example Closes #1012 Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/03c87143 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/03c87143 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/03c87143 Branch: refs/heads/trunk Commit: 03c871438ffa3ded83dcab5645621882bf580315 Parents: 1ed5888 Author: Tinu Cleatus <[email protected]> Authored: Fri Mar 17 01:14:24 2017 +0530 Committer: Anthony Shaw <[email protected]> Committed: Sat Apr 1 14:20:04 2017 +1100 ---------------------------------------------------------------------- docs/examples/compute/onapp/functionality.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/03c87143/docs/examples/compute/onapp/functionality.py ---------------------------------------------------------------------- diff --git a/docs/examples/compute/onapp/functionality.py b/docs/examples/compute/onapp/functionality.py index da634c1..08c7799 100644 --- a/docs/examples/compute/onapp/functionality.py +++ b/docs/examples/compute/onapp/functionality.py @@ -34,7 +34,7 @@ rate_limit = None # set max port speed. If none set, the system sets port speed to unlimited node = driver.create_node( - ex_label=name, + name=name, ex_memory=memory, ex_cpus=cpus, ex_cpu_shares=cpu_shares,
