diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 08:41:25 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 08:41:25 (GMT) |
commit | 19bebf2e2fd6121435c3af26fbd857f1994df8bd (patch) | |
tree | 2daf2eda91406c1525d57457c25adc1cc8d7a827 /Lib | |
parent | ae1c09811b4bc94c31c1dc89697067d84c9ff6f2 (diff) | |
download | cpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.zip cpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.tar.gz cpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.tar.bz2 |
Without this patch OSX users couldn't add new help sources because the code
tried to update one item in a tuple.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/configHelpSourceEdit.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/configHelpSourceEdit.py b/Lib/idlelib/configHelpSourceEdit.py index 3db1e0a..8924f79 100644 --- a/Lib/idlelib/configHelpSourceEdit.py +++ b/Lib/idlelib/configHelpSourceEdit.py @@ -151,6 +151,7 @@ class GetHelpSourceDialog(Toplevel): pass else: # Mac Safari insists on using the URI form for local files + self.result = list(self.result) self.result[1] = "file://" + path self.destroy() |