diff options
author | Chad Austin <chad@imvu.com> | 2013-01-30 17:50:33 -0800 |
---|---|---|
committer | Chad Austin <chad@imvu.com> | 2013-03-04 19:31:47 -0800 |
commit | c919d824ac44031f00f925b5c44e86ac6c393292 (patch) | |
tree | b3517abaeb7eb6aa4f55e9a2a0d89f0fea9e2023 /emscripten.py | |
parent | a804dfb628279243de1e82504b99d386eb2d2a93 (diff) |
Split Cache and JCache into objects and move them into cache.py so they can be loaded without shared.py
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emscripten.py b/emscripten.py index 869e512d..4f3f2a77 100755 --- a/emscripten.py +++ b/emscripten.py @@ -13,6 +13,7 @@ import os, sys, json, optparse, subprocess, re, time, multiprocessing, functools from tools import shared from tools import jsrun +from tools import cache __rootpath__ = os.path.abspath(os.path.dirname(__file__)) def path_from_root(*pathelems): |