summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-30 22:01:48 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-30 22:01:48 +0100
commit6712648470e6499d810004b0053c35c9832eb93b (patch)
treed8cae99f42bbbd6cf6f4353e1eaa65992effc5ee
parenta7a3fc9a072979785d3a8695d4b1971f60a83be6 (diff)
downloadorchestration-6712648470e6499d810004b0053c35c9832eb93b.tar.gz
Fix function name typo
-rw-r--r--source/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.py b/source/configure.py
index 914fc43..1222766 100644
--- a/source/configure.py
+++ b/source/configure.py
@@ -65,7 +65,7 @@ def configure():
fetch_exit_val = fetch_config()
if fetch_exit_val: exit(fetch_exit_val)
slave_types = load_slave_type_configs()
- pipeline_configs = load_pipeline_config()
+ pipeline_configs = load_pipeline_configs()
pipelines = []
for pipeline in pipeline_configs:
pipelines.append(pipeline_from_dict(pipeline))