From: Kevin A. <ka...@us...> - 2004-07-28 07:11:42
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21010 Modified Files: util.py Log Message: fixed runScript on Mac Index: util.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/util.py,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** util.py 25 Apr 2004 18:56:21 -0000 1.25 --- util.py 28 Jul 2004 07:11:33 -0000 1.26 *************** *** 285,289 **** else: python = sys.executable ! os.system(python + interp + filename + args + ' &') # KEA 2004-04-25 --- 285,289 ---- else: python = sys.executable ! os.system(python + interp + filename + ' ' + args + ' &') # KEA 2004-04-25 |