From: <jr...@us...> - 2008-11-10 07:27:25
|
Revision: 676 http://py2exe.svn.sourceforge.net/py2exe/?rev=676&view=rev Author: jretz Date: 2008-11-10 07:27:18 +0000 (Mon, 10 Nov 2008) Log Message: ----------- Use the right version of the interpreter for testing py2exe (why was it even working before?). Modified Paths: -------------- trunk/py2exe/test/test.py Modified: trunk/py2exe/test/test.py =================================================================== --- trunk/py2exe/test/test.py 2008-11-07 06:49:39 UTC (rev 675) +++ trunk/py2exe/test/test.py 2008-11-10 07:27:18 UTC (rev 676) @@ -130,7 +130,7 @@ open(generatedSetup, 'wt').write(open(test.replace('test_', 'setup_'), 'rt').read() % test) else: open(generatedSetup, 'wt').write(py2exeTemplate % test) - run(sys.executable, generatedSetup, 'py2exe', option) + run(interpreter, generatedSetup, 'py2exe', option) # Run exe and test against baseline os.rename(exe, exe2) # ensure that the exe works when renamed This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |