summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-28 09:06:18 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-28 09:06:18 +0100
commit3f7cb1eeeb047fd7ea980c3fcb306fa0a96e90aa (patch)
tree037c32eb0abfe52c7138049503347766f1db44fe
parent7e20a71475e09a33994387d6bb386a0799206b94 (diff)
downloadorchestration-3f7cb1eeeb047fd7ea980c3fcb306fa0a96e90aa.tar.gz
Fix mistake in copypasta'd code
-rw-r--r--source/ciat_deployer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/ciat_deployer.py b/source/ciat_deployer.py
index 1e9782b..b180e46 100644
--- a/source/ciat_deployer.py
+++ b/source/ciat_deployer.py
@@ -18,4 +18,4 @@ def buildcomplete(properties):
return
built_systems.append(system)
with open(BUILT_SYSTEMS_FILE, 'w') as f:
- outfile.write(yaml.dump(build_systems,default_flow_style=False))
+ f.write(yaml.dump(build_systems,default_flow_style=False))