From 89fbe0ffafd61bc951f2134a5659965d5865036f Mon Sep 17 00:00:00 2001 From: The Magician Date: Thu, 20 May 2021 10:27:27 -0700 Subject: [PATCH] Add option to set autoresize limit (#4743) (#420) Co-authored-by: Evy Bongers Signed-off-by: Modular Magician Co-authored-by: Evy Bongers --- plugins/module_utils/gcp_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/gcp_utils.py b/plugins/module_utils/gcp_utils.py index 6558304..643c8ca 100644 --- a/plugins/module_utils/gcp_utils.py +++ b/plugins/module_utils/gcp_utils.py @@ -394,7 +394,7 @@ class GcpRequest(object): diff = None # If a None is found, a difference does not exist. # Only differing values matter. - if not resp_value or resp_value == "None": + if not resp_value: return None # Can assume non-None types at this point.