diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-21 11:54:14 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-21 20:47:02 +0100 |
commit | e89eecc6cd55595f2d6452882789a994a48d511b (patch) | |
tree | aff1c697106759b6bdfca416932419ba3fbdc317 /tools/shared.py | |
parent | 3a048d9e5856ae9b2945c158ff43c1c35857a919 (diff) |
use chunkify in js optimizer, in preparation for jcaching
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/shared.py b/tools/shared.py index 0f22bb8c..6f14c078 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -59,8 +59,6 @@ class WindowsPopen: # Install our replacement Popen handler if we are running on Windows to avoid python spawn process function. if os.name == 'nt': Popen = WindowsPopen - -import js_optimizer __rootpath__ = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) def path_from_root(*pathelems): @@ -1326,3 +1324,5 @@ def unsuffixed(name): def unsuffixed_basename(name): return os.path.basename(unsuffixed(name)) +import js_optimizer + |