diff options
Diffstat (limited to 'scripts/gen-emscripten-exported-json.py')
-rwxr-xr-x | scripts/gen-emscripten-exported-json.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen-emscripten-exported-json.py b/scripts/gen-emscripten-exported-json.py index f183b036..6e563680 100755 --- a/scripts/gen-emscripten-exported-json.py +++ b/scripts/gen-emscripten-exported-json.py @@ -21,6 +21,8 @@ import os import re import sys +from utils import Executable, Error + SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) ROOT_DIR = os.path.dirname(SCRIPT_DIR) TEST_DIR = os.path.join(ROOT_DIR, 'test') @@ -28,8 +30,6 @@ DEFAULT_EMSCRIPTEN_DIR = os.path.join(ROOT_DIR, 'emscripten') sys.path.append(TEST_DIR) -from utils import Executable, Error - def FindFiles(cmake_build_dir): result = [] |