From 94a06c8d48337ac015d8ab9b07d854f1e391ccbe Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Tue, 18 Mar 2014 11:01:18 +0000 Subject: [PATCH] fixed import in hm.py --- hm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hm.py b/hm.py index 7a2c8d65..d65f3156 100644 --- a/hm.py +++ b/hm.py @@ -19,6 +19,6 @@ import sys sys.path.append('ext') -from build import toolchain -tc = toolchain.Toolchain() +from toolchain import commands +tc = commands.Toolchain() tc.run(sys.argv)