mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #14679 from dagwieers/merge_hash_v2
Avoid merging a dict and a AnsibleUnicode
This commit is contained in:
@@ -86,7 +86,7 @@ def merge_hash(a, b):
|
||||
for k, v in iteritems(b):
|
||||
# if there's already such key in a
|
||||
# and that key contains a MutableMapping
|
||||
if k in result and isinstance(result[k], MutableMapping):
|
||||
if k in result and isinstance(result[k], MutableMapping) and isinstance(v, MutableMapping):
|
||||
# merge those dicts recursively
|
||||
result[k] = merge_hash(result[k], v)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user