| Index: Source/core/scripts/template_expander.py
|
| diff --git a/Source/core/scripts/template_expander.py b/Source/core/scripts/template_expander.py
|
| index aafeb6840e66dc861d05b7cd3c7901c2884296ff..e30526f91a3451da290903a61e2109a0e4b87c89 100644
|
| --- a/Source/core/scripts/template_expander.py
|
| +++ b/Source/core/scripts/template_expander.py
|
| @@ -31,7 +31,7 @@ import sys
|
|
|
| _current_dir = os.path.dirname(os.path.realpath(__file__))
|
| # jinja2 is in chromium's third_party directory
|
| -sys.path.append(os.path.join(_current_dir, *([os.pardir] * 4)))
|
| +sys.path.insert(0, os.path.join(_current_dir, *([os.pardir] * 4)))
|
| import jinja2
|
|
|
|
|
|
|