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:
softwarefactory-project-zuul[bot] 2020-08-03 16:38:16 +00:00 committed by GitHub
commit d5ab54977c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,6 @@ def format_yaml(output, fmt):
return yaml.safe_dump(
output,
default_flow_style=False,
encoding='utf-8',
allow_unicode=True
)