diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-26 22:15:10 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-01-26 22:15:10 (GMT) |
commit | 2373ff4e4ffbcd35112e13528b162ee80e4786cc (patch) | |
tree | 678b77a3a68dbfe02d97a35241dfda3814291736 /Mac/scripts | |
parent | b340acf9fd893140efd65a56134a814a8d9bac73 (diff) | |
download | cpython-2373ff4e4ffbcd35112e13528b162ee80e4786cc.zip cpython-2373ff4e4ffbcd35112e13528b162ee80e4786cc.tar.gz cpython-2373ff4e4ffbcd35112e13528b162ee80e4786cc.tar.bz2 |
Fix an omission in the previous checkin.
Diffstat (limited to 'Mac/scripts')
-rw-r--r-- | Mac/scripts/EditPythonPrefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py index 9e9c370..64c5218 100644 --- a/Mac/scripts/EditPythonPrefs.py +++ b/Mac/scripts/EditPythonPrefs.py @@ -161,7 +161,7 @@ def interact(options, title): if n == DIR_ITEM: fss = EasyDialogs.AskFolder(message='Select python home folder:', wanted=macfs.FSSpec) - if ok: + if fss: options['dir'] = fss elif n == HELP_ITEM and Help: onoff = Help.HMGetBalloons() |