Update invalid docstring.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/5d310f19 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/5d310f19 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/5d310f19 Branch: refs/heads/trunk Commit: 5d310f196b6c2548dafe8d799597900763600d79 Parents: b86e6a7 Author: Tomaz Muraus <[email protected]> Authored: Wed Nov 27 18:10:27 2013 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Wed Nov 27 18:10:27 2013 +0100 ---------------------------------------------------------------------- libcloud/compute/drivers/cloudstack.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/5d310f19/libcloud/compute/drivers/cloudstack.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/cloudstack.py b/libcloud/compute/drivers/cloudstack.py index ea7c0e1..27498fd 100644 --- a/libcloud/compute/drivers/cloudstack.py +++ b/libcloud/compute/drivers/cloudstack.py @@ -377,20 +377,21 @@ class CloudStackNodeDriver(CloudStackDriverMixIn, NodeDriver): @inherits: :class:`NodeDriver.create_node` + :keyword networks: Optional list of networks to launch the server + into. + :type networks: ``list`` of :class:`.CloudStackNetwork` + :keyword ex_keyname: Name of existing keypair :type ex_keyname: ``str`` :keyword ex_userdata: String containing user data :type ex_userdata: ``str`` - :keyword networks: The server is launched into a set of Networks. - :type networks: :class:`CloudStackNetwork` - :keyword ex_security_groups: List of security groups to assign to the node :type ex_security_groups: ``list`` of ``str`` - :rtype: :class:`CloudStackNode` + :rtype: :class:`.CloudStackNode` """ server_params = self._create_args_to_params(None, **kwargs)
