From 845e624c5644a12ddda485b43b0e8776d4ab8a3a Mon Sep 17 00:00:00 2001 From: micafer Date: Thu, 26 Nov 2015 13:20:11 +0100 Subject: [PATCH] Minor change --- connectors/GCE.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectors/GCE.py b/connectors/GCE.py index 65ed0662d..c60a0d9cb 100644 --- a/connectors/GCE.py +++ b/connectors/GCE.py @@ -114,7 +114,7 @@ def update_system_info_from_instance(self, system, instance_type): """ Update the features of the system with the information of the instance_type """ - if isinstance(instance_type, NodeSize): + if isinstance(instance_type, NodeSize): system.addFeature(Feature("memory.size", "=", instance_type.ram, 'M'), conflict="other", missing="other") if instance_type.disk: system.addFeature(Feature("disk.0.free_size", "=", instance_type.disk , 'G'), conflict="other", missing="other")