mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
Use yaml.safe_dump rather than yaml.dump. No more "!!python/unicode".
This commit is contained in:
@@ -25,7 +25,7 @@ class FilterModule(object):
|
||||
return {
|
||||
'to_json': json.dumps,
|
||||
'from_json': json.loads,
|
||||
'to_yaml': yaml.dump,
|
||||
'to_yaml': yaml.safe_dump,
|
||||
'from_yaml': yaml.load,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user