From 19bebf2e2fd6121435c3af26fbd857f1994df8bd Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Fri, 26 May 2006 08:41:25 +0000 Subject: Without this patch OSX users couldn't add new help sources because the code tried to update one item in a tuple. --- Lib/idlelib/configHelpSourceEdit.py | 1 + 1 file changed, 1 insertion(+) 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() -- cgit v0.12