Return-Path: X-Original-To: apmail-libcloud-commits-archive@www.apache.org Delivered-To: apmail-libcloud-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E7902100F9 for ; Wed, 27 Nov 2013 18:19:52 +0000 (UTC) Received: (qmail 87777 invoked by uid 500); 27 Nov 2013 18:19:52 -0000 Delivered-To: apmail-libcloud-commits-archive@libcloud.apache.org Received: (qmail 87752 invoked by uid 500); 27 Nov 2013 18:19:51 -0000 Mailing-List: contact commits-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list commits@libcloud.apache.org Received: (qmail 87732 invoked by uid 99); 27 Nov 2013 18:19:49 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Nov 2013 18:19:49 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6A8FC90EAE1; Wed, 27 Nov 2013 18:19:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tomaz@apache.org To: commits@libcloud.apache.org Date: Wed, 27 Nov 2013 18:19:50 -0000 Message-Id: <6c17f107ee014f7eba4a43c103b30ae2@git.apache.org> In-Reply-To: <9eaa2aef22614c4699ba7a2f15492151@git.apache.org> References: <9eaa2aef22614c4699ba7a2f15492151@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] git commit: Update invalid docstring. 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 Authored: Wed Nov 27 18:10:27 2013 +0100 Committer: Tomaz Muraus 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)