[Python-checkins] r86655 - python/branches/py3k/Lib/idlelib/idle.bat

brian.curtin python-checkins at python.org
Mon Nov 22 01:01:02 CET 2010


Author: brian.curtin
Date: Mon Nov 22 01:01:01 2010
New Revision: 86655

Log:
Quote the paths in the event that they contain spaces.


Modified:
   python/branches/py3k/Lib/idlelib/idle.bat

Modified: python/branches/py3k/Lib/idlelib/idle.bat
==============================================================================
--- python/branches/py3k/Lib/idlelib/idle.bat	(original)
+++ python/branches/py3k/Lib/idlelib/idle.bat	Mon Nov 22 01:01:01 2010
@@ -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


More information about the Python-checkins mailing list