diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-28 17:06:43 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-07-15 14:14:03 +0000 |
commit | 06faf60f47d270bc9ce3c6945c31861302882ae9 (patch) | |
tree | 562e44a3168f8593dafe890c653f410b302de56f /doc | |
parent | f7b461220ec2f1af3966ace12c21334f1f3b6457 (diff) | |
download | buildstream-06faf60f47d270bc9ce3c6945c31861302882ae9.tar.gz |
_yaml: Decomission 'dump()'. 'roundtrip_dump' is an equivalent function now
Remove completely '_yaml.dump()' and replace all notions and call by
'roundtrip_dump'
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/bst2html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/bst2html.py b/doc/bst2html.py index 9d178bc18..71d497eda 100755 --- a/doc/bst2html.py +++ b/doc/bst2html.py @@ -197,7 +197,7 @@ def workdir(source_cache=None): 'sourcedir': source_cache, 'logdir': os.path.join(tempdir, 'logs'), } - _yaml.dump(config, bst_config_file) + _yaml.roundtrip_dump(config, bst_config_file) yield (tempdir, bst_config_file, source_cache) |