diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-04-21 19:46:23 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-04-21 19:46:23 +0200 |
commit | ad95a1dd23e014045d07f92f6952fd7f0c4d9c76 (patch) | |
tree | b89e2f7304b07d9c458f478a8c593b6b7cfbac68 | |
parent | 1eec5d9f7222dd3f7020b51e18ed6df3386b18f9 (diff) | |
download | servo-ad95a1dd23e014045d07f92f6952fd7f0c4d9c76.tar.gz servo-ad95a1dd23e014045d07f92f6952fd7f0c4d9c76.zip |
Blind attempt at fixing a Python import error on Windows.
See #10789.
-rw-r--r-- | components/style/properties/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/properties/build.py b/components/style/properties/build.py index a8472a1a55d..7dbedd87f29 100644 --- a/components/style/properties/build.py +++ b/components/style/properties/build.py @@ -8,6 +8,7 @@ import sys BASE = os.path.dirname(__file__) sys.path.insert(0, os.path.join(BASE, "Mako-0.9.1.zip")) +sys.path.insert(0, BASE) # For importing `data.py` from mako import exceptions from mako.template import Template |