From bf05109be34294d7f97b85ab73243c9722f78de8 Mon Sep 17 00:00:00 2001 From: George Oliver Date: Sun, 22 Feb 2015 12:35:13 -0800 Subject: [PATCH] change path to search for within virtualenv on Windows --- src/lt/plugins/python.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lt/plugins/python.cljs b/src/lt/plugins/python.cljs index 6e0fdee..6a99c90 100644 --- a/src/lt/plugins/python.cljs +++ b/src/lt/plugins/python.cljs @@ -110,7 +110,7 @@ (defn find-venv [obj] (let [to-find (if (platform/win?) - "bin\\python" + "scripts\\python.exe" "bin/python") vpy (files/walk-up-find (:path obj) to-find)] (if (empty? vpy)