mirror of
https://github.com/ansible/awx.git
synced 2026-05-18 06:47:41 -02:30
Merge pull request #7796 from zedr/fix-py3-yaml-bytes-decoded
Fix garbage being printed when exporting as YAML - related #7795 Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -130,7 +130,6 @@ def format_yaml(output, fmt):
|
|||||||
return yaml.safe_dump(
|
return yaml.safe_dump(
|
||||||
output,
|
output,
|
||||||
default_flow_style=False,
|
default_flow_style=False,
|
||||||
encoding='utf-8',
|
|
||||||
allow_unicode=True
|
allow_unicode=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user