mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Auto merge of #10791 - servo:explicit-python-path, r=KiChjang
Blind attempt at fixing a Python import error on Windows. See #10789. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10791) <!-- Reviewable:end -->
This commit is contained in:
commit
b080da474f
1 changed files with 1 additions and 0 deletions
|
@ -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.lookup import TemplateLookup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue