You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2016/12/27 08:40:17 UTC

[2/4] libcloud git commit: Fix for documentation

Fix for documentation


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/808118c8
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/808118c8
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/808118c8

Branch: refs/heads/trunk
Commit: 808118c88fa81b320a5ef77572ee9fc017ddb08d
Parents: e384ce7
Author: John Baublitz <jo...@cambridgesemantics.com>
Authored: Tue Nov 29 11:00:18 2016 -0500
Committer: Anthony Shaw <an...@apache.org>
Committed: Tue Dec 27 19:39:09 2016 +1100

----------------------------------------------------------------------
 libcloud/compute/drivers/gce.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/808118c8/libcloud/compute/drivers/gce.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py
index 233ada7..e0f3e83 100644
--- a/libcloud/compute/drivers/gce.py
+++ b/libcloud/compute/drivers/gce.py
@@ -4539,6 +4539,11 @@ class GCENodeDriver(NodeDriver):
                                   send/receive non-matching src/dst packets.
         :type     ex_can_ip_forward: ``bool`` or ``None``
 
+        :keyword  ex_preemptible: Defines whether the instance is preemptible.
+                                        (If not supplied, the instance will
+                                         not be preemptible)
+        :type     ex_preemptible: ``bool`` or ``None``
+
         :keyword  ex_disks_gce_struct: Support for passing in the GCE-specific
                                        formatted disks[] structure. No attempt
                                        is made to ensure proper formatting of
@@ -4583,11 +4588,6 @@ class GCENodeDriver(NodeDriver):
         :return:  A list of Node objects for the new nodes.
         :rtype:   ``list`` of :class:`Node`
 
-        :keyword  ex_preemptible: Defines whether the instance is preemptible.
-                                        (If not supplied, the instance will
-                                         not be preemptible)
-        :type     ex_preemptible: ``bool`` or ``None``
-
         """
         if image and ex_disks_gce_struct:
             raise ValueError("Cannot specify both 'image' and "