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 import sys
sys.path.append('ext') sys.path.append('ext')
from build import toolchain from toolchain import commands
tc = toolchain.Toolchain() tc = commands.Toolchain()
tc.run(sys.argv) tc.run(sys.argv)