Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Unified Diff: mojo/nacl/generator/generate_nacl_bindings.py

Issue 813483005: Prepend jinja2 path for hermeticity. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/nacl/generator/generate_nacl_bindings.py
diff --git a/mojo/nacl/generator/generate_nacl_bindings.py b/mojo/nacl/generator/generate_nacl_bindings.py
index ee6189c1239f4615ffc82d8690776ac0b19d240e..446ef7e4b3193c783fd0713be44c7550647df3c6 100755
--- a/mojo/nacl/generator/generate_nacl_bindings.py
+++ b/mojo/nacl/generator/generate_nacl_bindings.py
@@ -29,7 +29,7 @@ def _GetDirAbove(dirname):
def _AddThirdPartyImportPath():
- sys.path.append(os.path.join(_GetDirAbove('mojo'), 'third_party'))
+ sys.path.insert(0, os.path.join(_GetDirAbove('mojo'), 'third_party'))
_AddThirdPartyImportPath()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698