summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2006-05-26 08:41:25 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2006-05-26 08:41:25 (GMT)
commit19bebf2e2fd6121435c3af26fbd857f1994df8bd (patch)
tree2daf2eda91406c1525d57457c25adc1cc8d7a827 /Lib
parentae1c09811b4bc94c31c1dc89697067d84c9ff6f2 (diff)
downloadcpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.zip
cpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.tar.gz
cpython-19bebf2e2fd6121435c3af26fbd857f1994df8bd.tar.bz2
Without this patch OSX users couldn't add new help sources because the code
tried to update one item in a tuple.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/configHelpSourceEdit.py1
1 files changed, 1 insertions, 0 deletions
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()