Skip to content

Commit

Permalink
fix(update): omit records without content in diff
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaslihotzki-f committed Jan 17, 2025
1 parent d672fa2 commit 885ec8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def main():
[
"\t\t".join([r.name, r.typ, r.content])
for r in target_state
if r and r not in diff_set.delete
if r and r.content is not None and r not in diff_set.delete
]
)
+ "\n",
Expand Down

0 comments on commit 885ec8b

Please sign in to comment.