fixed import in hm.py

This commit is contained in:
Nick Bolton 2014-03-18 11:01:18 +00:00
parent 540af10254
commit 94a06c8d48
1 changed files with 2 additions and 2 deletions

4
hm.py
View File

@ -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)