summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-28 08:49:42 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-28 08:49:42 +0100
commitd3dcd0a9af5aef255a69674d20675d00f87b38cb (patch)
tree92a3dd85d0bf7b55fea88b09a9ab2f0cc2044478
parente278772c8ef5589bc2c4d49c1aba977bf46c2b24 (diff)
downloadorchestration-d3dcd0a9af5aef255a69674d20675d00f87b38cb.tar.gz
Add missing commas
-rw-r--r--source/ciat_deployer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/ciat_deployer.py b/source/ciat_deployer.py
index aec284c..a36c806 100644
--- a/source/ciat_deployer.py
+++ b/source/ciat_deployer.py
@@ -5,8 +5,8 @@ def buildcomplete(properties):
global BUILT_SYSTEMS_FILE
system = {
- 'name': properties['system']
- 'slave': properties['slave']
+ 'name': properties['system'],
+ 'slave': properties['slave'],
'definitions_sha': properties['definitions_sha']}
if os.path.isfile(BUILT_SYSTEMS_FILE):