Skip to content

Commit 1af036a

Browse files
committed
Return the diff dict instead of the dictdiffer object
1 parent 204822a commit 1af036a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

salt/states/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7311,7 +7311,7 @@ def serialize(name,
73117311

73127312
if isinstance(existing_data, dict) and isinstance(merged_data, dict):
73137313
ret['changes']['diff'] = salt.utils.dictdiffer.recursive_diff(
7314-
existing_data, merged_data)
7314+
existing_data, merged_data).diffs
73157315

73167316
return ret
73177317

0 commit comments

Comments
 (0)