From: Jack Jansen Date: Sun, 26 Jan 2003 22:15:10 +0000 (+0000) Subject: Fix an omission in the previous checkin. X-Git-Tag: v2.3c1~2300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2373ff4e4ffbcd35112e13528b162ee80e4786cc;p=thirdparty%2FPython%2Fcpython.git Fix an omission in the previous checkin. --- diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py index 9e9c3702e8b6..64c5218c6a33 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()