summaryrefslogtreecommitdiffstats
path: root/x.py
diff options
context:
space:
mode:
Diffstat (limited to 'x.py')
-rwxr-xr-xx.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/x.py b/x.py
index 6df4033d5..5dee953a3 100755
--- a/x.py
+++ b/x.py
@@ -22,7 +22,8 @@ if sys.version_info.major < 3:
pass
rust_dir = os.path.dirname(os.path.abspath(__file__))
-sys.path.append(os.path.join(rust_dir, "src", "bootstrap"))
+# For the import below, have Python search in src/bootstrap first.
+sys.path.insert(0, os.path.join(rust_dir, "src", "bootstrap"))
import bootstrap
bootstrap.main()