diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-03-10 21:48:24 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-03-10 21:48:24 (GMT) |
commit | 401396fc60fd28bf7166020f03f8c6223ca99d3a (patch) | |
tree | 7a71ccf8cf26e8c18497d8bf4ce912af8ffccd4d /Tools | |
parent | 45bbda2593d4f60b452ad2e55370beb2745f68dc (diff) | |
download | cpython-401396fc60fd28bf7166020f03f8c6223ca99d3a.zip cpython-401396fc60fd28bf7166020f03f8c6223ca99d3a.tar.gz cpython-401396fc60fd28bf7166020f03f8c6223ca99d3a.tar.bz2 |
Get rid of hardcoded Python path (can't guess where the user installed
IDLE, and it likely changes across releases anyway).
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/idle/idle.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/idle.bat b/Tools/idle/idle.bat index cd465e3..9024d02 100644 --- a/Tools/idle/idle.bat +++ b/Tools/idle/idle.bat @@ -1,3 +1,3 @@ rem idle.bat -"C:\Python16\python.exe" "idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9 +start idle.pyw %1 %2 %3 %4 %5 %6 %7 %8 %9 |