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")