From: Ronald Oussoren Date: Fri, 26 May 2006 13:10:16 +0000 (+0000) Subject: Code tried to modify a tuple, convert to list before doing that (backport from X-Git-Tag: v2.4.4c1~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=872c3bb631708c239106fc8cc11e60e87c37eaeb;p=thirdparty%2FPython%2Fcpython.git Code tried to modify a tuple, convert to list before doing that (backport from same patch on trunk) --- diff --git a/Lib/idlelib/configHelpSourceEdit.py b/Lib/idlelib/configHelpSourceEdit.py index 3db1e0ae5eca..8924f792bb57 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()