Blind attempt at fixing a Python import error on Windows.

See #10789.
This commit is contained in:
Simon Sapin 2016-04-21 19:46:23 +02:00
parent 1eec5d9f72
commit ad95a1dd23

View file

@ -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