Build: setup.py now calls pymclevel/setup.py, now that setup_nbt.py was merged into it.

This commit is contained in:
David Vierra 2012-11-01 18:59:24 -10:00
parent dd2bf7f2ae
commit 210c3b50ec

View File

@ -134,7 +134,7 @@ def build_nbt():
Builds _nbt.py.
"""
os.chdir('pymclevel')
os.system(sys.executable + ' setup_nbt.py build_ext --inplace --force')
os.system(sys.executable + ' setup.py build_ext --inplace --force')
os.chdir('..')