Repository: libcloud
Updated Branches:
  refs/heads/trunk f0072ab93 -> be9097eec


Fix incorrect doc string type information.

The function will iterate through the project list. If you pass in a
string, it will iterate through the string instead of considering the
string a list with one element.

Closes #837

Signed-off-by: Tomaz Muraus <to...@tomaz.me>


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

Branch: refs/heads/trunk
Commit: be9097eec2afc6eecdcf292d13a8c6fc03fd7d41
Parents: f0072ab
Author: Max Illfelder <illfel...@google.com>
Authored: Fri Jul 8 13:36:42 2016 -0700
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Sun Jul 10 11:35:56 2016 +0200

----------------------------------------------------------------------
 libcloud/compute/drivers/gce.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/be9097ee/libcloud/compute/drivers/gce.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py
index 94dc7f6..92cd84c 100644
--- a/libcloud/compute/drivers/gce.py
+++ b/libcloud/compute/drivers/gce.py
@@ -4369,7 +4369,7 @@ class GCENodeDriver(NodeDriver):
 
         :param  ex_project_list: The name of the project to list for images.
                                  Examples include: 'debian-cloud'.
-        :type   ex_project_List: ``str``, ``list`` of ``str``, or ``None``
+        :type   ex_project_list: ``list`` of ``str``, or ``None``
 
         :param  ex_standard_projects: If true, check in standard projects if
                                       the image is not found.

Reply via email to