diff options
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 + |