mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Deepcopy on merge_recurse
This commit is contained in:
parent
a13c84ade8
commit
5c6e210c8b
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ def merge_list(obj_a, obj_b):
|
|||
|
||||
|
||||
def merge_recurse(obj_a, obj_b):
|
||||
copied = copy.copy(obj_a)
|
||||
copied = copy.deepcopy(obj_a)
|
||||
return update(copied, obj_b)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue