diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-22 00:02:28 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-22 00:02:28 (GMT) |
commit | b3d5531683f3c621cd521cf7bde3e96cbb8350a6 (patch) | |
tree | f0a5026985480affc297b675935f1ad8086ba099 /Lib/idlelib/idle.bat | |
parent | 44c1db05fb2d0b753d18d13a415fa703aa7c0795 (diff) | |
download | cpython-b3d5531683f3c621cd521cf7bde3e96cbb8350a6.zip cpython-b3d5531683f3c621cd521cf7bde3e96cbb8350a6.tar.gz cpython-b3d5531683f3c621cd521cf7bde3e96cbb8350a6.tar.bz2 |
Merged revisions 86655 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86655 | brian.curtin | 2010-11-21 18:01:01 -0600 (Sun, 21 Nov 2010) | 2 lines
Quote the paths in the event that they contain spaces.
........
Diffstat (limited to 'Lib/idlelib/idle.bat')
-rwxr-xr-x | Lib/idlelib/idle.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle.bat b/Lib/idlelib/idle.bat index 4e67868..cc653dc 100755 --- a/Lib/idlelib/idle.bat +++ b/Lib/idlelib/idle.bat @@ -1,4 +1,4 @@ @echo off rem Start IDLE using the appropriate Python interpreter set CURRDIR=%~dp0 -start %CURRDIR%..\..\pythonw.exe %CURRDIR%idle.pyw %1 %2 %3 %4 %5 %6 %7 %8 %9 +start "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9 |