commit | 19bebf2e2fd6121435c3af26fbd857f1994df8bd | [log] [tgz] |
---|---|---|
author | Ronald Oussoren <ronaldoussoren@mac.com> | Fri May 26 08:41:25 2006 +0000 |
committer | Ronald Oussoren <ronaldoussoren@mac.com> | Fri May 26 08:41:25 2006 +0000 |
tree | 2daf2eda91406c1525d57457c25adc1cc8d7a827 | |
parent | ae1c09811b4bc94c31c1dc89697067d84c9ff6f2 [diff] [blame] |
Without this patch OSX users couldn't add new help sources because the code tried to update one item in a tuple.
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 @@ 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()