diff options
Diffstat (limited to 'buildstream/_yaml.py')
-rw-r--r-- | buildstream/_yaml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_yaml.py b/buildstream/_yaml.py index 7bb9b7867..0e85f0bfa 100644 --- a/buildstream/_yaml.py +++ b/buildstream/_yaml.py @@ -26,7 +26,6 @@ from contextlib import ExitStack from ruamel import yaml from ruamel.yaml.representer import SafeRepresenter, RoundTripRepresenter from ._exceptions import LoadError, LoadErrorReason -from . import utils # We store information in the loaded yaml on a DictProvenance @@ -214,6 +213,7 @@ def load_data(data, shortname=None, copy_tree=False): def dump(node, filename=None): with ExitStack() as stack: if filename: + from . import utils f = stack.enter_context(utils.save_file_atomic(filename, 'w')) else: f = sys.stdout |