From 1bb2e369e0ee6c164c0edd4d7625737f79fde14c Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Thu, 31 May 2012 12:24:55 +0100 Subject: [PATCH] Fixed another python path... --- buildbot/startbuild.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/startbuild.pl b/buildbot/startbuild.pl index c77515e..abe0dd3 100644 --- a/buildbot/startbuild.pl +++ b/buildbot/startbuild.pl @@ -11,7 +11,7 @@ require 'helpers.pm'; chdir('../../OUTPUT'); if ($^O eq "linux" || $^O eq "darwin") { - system("python3.1 build.py 2>&1"); + system("python3 build.py 2>&1"); } else { system("C:\\Python31\\python.exe build.py 2>&1"); }