From: Ronald Oussoren Date: Fri, 26 May 2006 08:41:25 +0000 (+0000) Subject: Without this patch OSX users couldn't add new help sources because the code X-Git-Tag: v2.5b1~500 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19bebf2e2fd6121435c3af26fbd857f1994df8bd;p=python 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 3db1e0ae5e..8924f792bb 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()