[Python-checkins] r46272 - python/trunk/Lib/idlelib/configHelpSourceEdit.py
ronald.oussoren
python-checkins at python.org
Fri May 26 10:41:26 CEST 2006
Author: ronald.oussoren
Date: Fri May 26 10:41:25 2006
New Revision: 46272
Modified:
python/trunk/Lib/idlelib/configHelpSourceEdit.py
Log:
Without this patch OSX users couldn't add new help sources because the code
tried to update one item in a tuple.
Modified: python/trunk/Lib/idlelib/configHelpSourceEdit.py
==============================================================================
--- python/trunk/Lib/idlelib/configHelpSourceEdit.py (original)
+++ python/trunk/Lib/idlelib/configHelpSourceEdit.py Fri May 26 10:41:25 2006
@@ -151,6 +151,7 @@
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()
More information about the Python-checkins
mailing list