From 872c3bb631708c239106fc8cc11e60e87c37eaeb Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Fri, 26 May 2006 13:10:16 +0000 Subject: [PATCH] Code tried to modify a tuple, convert to list before doing that (backport from same patch on trunk) --- Lib/idlelib/configHelpSourceEdit.py | 1 + 1 file changed, 1 insertion(+) 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() -- 2.47.3