From 8c3063001e117055f358f9b41931f80b753db55b Mon Sep 17 00:00:00 2001 From: Loic Lambiel Date: Thu, 13 Nov 2014 10:51:28 +0100 Subject: [PATCH] LIBCLOUD-634 Cloudstack: get template size in list_images extra attributes --- libcloud/compute/drivers/cloudstack.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libcloud/compute/drivers/cloudstack.py b/libcloud/compute/drivers/cloudstack.py index 28fc144e25..2c68ff68ae 100644 --- a/libcloud/compute/drivers/cloudstack.py +++ b/libcloud/compute/drivers/cloudstack.py @@ -982,6 +982,7 @@ def list_images(self, location=None): extra={ 'hypervisor': img['hypervisor'], 'format': img['format'], + 'size': img['size'], 'os': img['ostypename'], 'displaytext': img['displaytext']})) return images