From 210c3b50ecfd51faf00744343085177505451fc7 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Thu, 1 Nov 2012 18:59:24 -1000 Subject: [PATCH] Build: setup.py now calls pymclevel/setup.py, now that setup_nbt.py was merged into it. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 46b7925..8f8af12 100644 --- a/setup.py +++ b/setup.py @@ -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('..')