mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
fix 'str' object has no attribute 'get'
The function _compare_value attempts to return if "resp_value" is not set. The problem occurs when one of the functions sets the response value "None" as string, rather than pythonic None. This is a fix to also exit this function on a "None" string response value.
This commit is contained in:
parent
b84fd05309
commit
9a72a0acf3
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue