From: <otm...@us...> - 2010-05-25 05:40:21
|
Revision: 7058 http://jython.svn.sourceforge.net/jython/?rev=7058&view=rev Author: otmarhumbel Date: 2010-05-25 05:40:14 +0000 (Tue, 25 May 2010) Log Message: ----------- add missing quotes around sys.executable Modified Paths: -------------- trunk/jython/Lib/test/test_bat_jy.py Modified: trunk/jython/Lib/test/test_bat_jy.py =================================================================== --- trunk/jython/Lib/test/test_bat_jy.py 2010-05-17 22:38:50 UTC (rev 7057) +++ trunk/jython/Lib/test/test_bat_jy.py 2010-05-25 05:40:14 UTC (rev 7058) @@ -130,7 +130,7 @@ return home def assertOutput(self, flags=None, javaHome=None, jythonHome=None, jythonOpts=None): - args = [sys.executable, '--print'] + args = [self.quote(sys.executable), '--print'] memory = None stack = None prop = None This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |