Use yaml.safe_dump rather than yaml.dump. No more "!!python/unicode".

pull/1982/head
Piotr Roszatycki 12 years ago
parent fed82c2188
commit 8cf268441e

@ -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,
}

Loading…
Cancel
Save