Skip to content

Commit 186c2c0

Browse files
author
Slyke
committed
Added loader option to avoid errors on some systems
1 parent 18010cd commit 186c2c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/yaml_merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ def mergeYaml(priorityYaml, extensionYaml):
3232
mergedYaml = mergeYaml(yamlOverride, yamlTempDockerCompose)
3333

3434
with open(r'%s' % pathOutput, 'w') as outputFile:
35-
# yaml.dump(mergedYaml, outputFile, default_flow_style=False, sort_keys=False) # TODO: 'sort_keys' not available in this version of Python/yaml
36-
yaml.dump(mergedYaml, outputFile, default_flow_style=False)
35+
# yaml.dump(mergedYaml, outputFile, Loader=yaml.FullLoader, default_flow_style=False, sort_keys=False) # TODO: 'sort_keys' not available in this version of Python/yaml
36+
yaml.dump(mergedYaml, outputFile, Loader=yaml.FullLoader, default_flow_style=False)

0 commit comments

Comments
 (0)