Fix module path

This commit is contained in:
Joshua Hesketh 2013-08-14 12:55:22 +10:00
parent b9a7f74999
commit ac445b5a3e
3 changed files with 6 additions and 3 deletions
turbo_hipster
task_plugins/gate_real_db_upgrade
worker_server.py

@ -18,7 +18,7 @@
Primarily place the log files somewhere useful and optionally email
somebody """
from lib.utils import push_file
from turbo_hipster.lib.utils import push_file
import tempfile
import os
import re

@ -20,9 +20,10 @@ import os
import re
import threading
from lib import utils
from turbo_hipster.lib import utils
import task_plugins.gate_real_db_upgrade.handle_results as handle_results
import turbo_hipster.task_plugins.gate_real_db_upgrade.handle_results\
as handle_results
__worker_name__ = 'sql-migrate-test-runner-%s' % os.uname()[1]

@ -132,4 +132,6 @@ def main():
if __name__ == '__main__':
sys.path.insert(0, os.path.abspath(
os.path.join(os.path.dirname(__file__), '../')))
main()