You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/08/21 16:14:13 UTC

git commit: LIBCLOUD-377: Adding extra attribute to NodeImage

Updated Branches:
  refs/heads/trunk b42a58b8e -> 06521a0a5


LIBCLOUD-377: Adding extra attribute to NodeImage

Signed-off-by: Tomaz Muraus <to...@apache.org>


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

Branch: refs/heads/trunk
Commit: 06521a0a5ca1e01a880935cc84d786052d16d280
Parents: b42a58b
Author: Sebastien Goasguen <ru...@gmail.com>
Authored: Wed Aug 21 07:53:19 2013 -0400
Committer: Tomaz Muraus <to...@apache.org>
Committed: Wed Aug 21 16:09:21 2013 +0200

----------------------------------------------------------------------
 libcloud/compute/drivers/cloudstack.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/06521a0a/libcloud/compute/drivers/cloudstack.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/cloudstack.py b/libcloud/compute/drivers/cloudstack.py
index d8f28de..d7ec86f 100644
--- a/libcloud/compute/drivers/cloudstack.py
+++ b/libcloud/compute/drivers/cloudstack.py
@@ -181,7 +181,8 @@ class CloudStackNodeDriver(CloudStackDriverMixIn, NodeDriver):
                 extra={
                     'hypervisor': img['hypervisor'],
                     'format': img['format'],
-                    'os': img['ostypename']}))
+                    'os': img['ostypename'],
+                    'displaytext': img['displaytext']}))
         return images
 
     def list_locations(self):