Merge pull request #411 from zachzoref/patch-1

fix 'str' object has no attribute 'get'
This commit is contained in:
Alex Stephen 2021-05-19 19:58:17 -07:00 committed by GitHub
commit 516dc45bce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:
if not resp_value or resp_value == "None":
return None
# Can assume non-None types at this point.