From f0fb330bd2517d30ab84d317f4728a91fb8b94fb Mon Sep 17 00:00:00 2001 From: Will Holland Date: Thu, 1 Oct 2015 01:05:43 +0100 Subject: Fix importing wrong module in bottlerock --- source/bottlerock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' -- cgit v1.2.1