From 87bfffdb9d294ac413c4d9683668b5a474f23a18 Mon Sep 17 00:00:00 2001 From: stonebig Date: Thu, 18 Feb 2016 00:03:29 +0100 Subject: [PATCH] WinPython Interpreter is ptpython --- make.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/make.py b/make.py index f5ff6dbe..b50d09c2 100644 --- a/make.py +++ b/make.py @@ -515,11 +515,11 @@ def _create_launchers(self): """Create launchers""" self._print("Creating launchers") self.create_launcher('WinPython Command Prompt.exe', 'cmd.ico', + command='$SYSDIR\cmd.exe', + args='/k', workdir='${WINPYDIR}') + self.create_launcher('WinPython Interpreter.exe', 'python.ico', command=r'${WINPYDIR}\Scripts\ptpython.exe', - args='/k', workdir=r'${WINPYDIR}\Scripts') - # command='$SYSDIR\cmd.exe', - # args='/k', workdir='${WINPYDIR}') - self.create_launcher('WinPython Interpreter.exe', 'python.ico') + workdir=r'${WINPYDIR}\Scripts') #self.create_launcher('IDLE (Python GUI).exe', 'python.ico', # args='idle.pyw', # workdir='${WINPYDIR}\Lib\idlelib')