浏览代码

It seems site.addsitedir() sticks this at the end; we want it first.

pull/24/head
Ben Kurtovic 11 年前
父节点
当前提交
2d07ee8ceb
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      build.py

+ 1
- 0
build.py 查看文件

@@ -19,6 +19,7 @@ if plat.startswith("sunos"):
elif plat.startswith("linux"):
plat = "linux"
site.addsitedir(os.path.expanduser("~/.local/" + plat + "/lib/python2.7/site-packages"))
sys.path.insert(0, os.path.expanduser("~/.local/" + plat + "/lib/python2.7/site-packages"))
sys.path.insert(0, ".")

from mako.template import Template


正在加载...
取消
保存