summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-10-01 01:05:43 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-10-01 01:05:43 +0100
commitf0fb330bd2517d30ab84d317f4728a91fb8b94fb (patch)
treef914797de23836aaed5ebd8ad281f823a27f492d
parentc694410fe86284f0fff49865308e81f2466abe70 (diff)
downloadorchestration-f0fb330bd2517d30ab84d317f4728a91fb8b94fb.tar.gz
Fix importing wrong module in bottlerock
-rw-r--r--source/bottlerock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/bottlerock.py b/source/bottlerock.py
index 0a6e7a7..5b095c4 100644
--- a/source/bottlerock.py
+++ b/source/bottlerock.py
@@ -7,7 +7,7 @@ from bottle import post, request, run, HTTPResponse
import imp
import ciat_deployer
orch_config = imp.load_source('orch_config', '../source/orch_config.py')
-configure = imp.load_source('configure', '../source/orch_config.py')
+configure = imp.load_source('configure', '../source/configure.py')
LOGFILE = '../orch.log'
DEFINITIONS = 'ssh://git@cu010-trove.codethink.com/baserock/baserock/definitions'