diff options
Diffstat (limited to 'Mac/IDLE')
-rw-r--r-- | Mac/IDLE/idlemain.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Mac/IDLE/idlemain.py b/Mac/IDLE/idlemain.py index aa75d4c..9b52738 100644 --- a/Mac/IDLE/idlemain.py +++ b/Mac/IDLE/idlemain.py @@ -13,7 +13,10 @@ os.chdir(os.path.expanduser('~/Documents')) # Make sure sys.executable points to the python interpreter inside the # framework, instead of at the helper executable inside the application # bundle (the latter works, but doesn't allow access to the window server) -sys.executable = os.path.join(sys.prefix, 'bin', 'python') +if sys.executable.endswith('-32'): + sys.executable = os.path.join(sys.prefix, 'bin', 'python-32') +else: + sys.executable = os.path.join(sys.prefix, 'bin', 'python') # Look for the -psn argument that the launcher adds and remove it, it will # only confuse the IDLE startup code. |