summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-18 11:35:47 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-18 11:35:47 +0100
commita88644405ac7ab1762128b53863f98333972f473 (patch)
tree27d53126b15f008407b2255cb5f6031e701677c9
parent97c9780545d77226c4f61eeceff752114d2a4c07 (diff)
downloadorchestration-a88644405ac7ab1762128b53863f98333972f473.tar.gz
Fix not passing properties to sendchange
-rw-r--r--source/bottlerock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/bottlerock.py b/source/bottlerock.py
index 28d584d..71bb4f4 100644
--- a/source/bottlerock.py
+++ b/source/bottlerock.py
@@ -74,7 +74,7 @@ def repo_update():
except Status400 as p:
return missing_property_response(p)
if properties['repo_name'] == DEFINITIONS:
- return sendchange('definitions_update')
+ return sendchange('definitions_update',dict())
elif properties['repo_name'] == TEST_REPO:
force = {"force":"force"}
return sendchange('definitions_update',force)