[Python-checkins] r65413 - sandbox/trunk/ttk-gsoc/src/idlelib/FileList.py
guilherme.polo
python-checkins at python.org
Sat Aug 2 20:07:39 CEST 2008
Author: guilherme.polo
Date: Sat Aug 2 20:07:38 2008
New Revision: 65413
Log:
name fixes
Modified:
sandbox/trunk/ttk-gsoc/src/idlelib/FileList.py
Modified: sandbox/trunk/ttk-gsoc/src/idlelib/FileList.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/idlelib/FileList.py (original)
+++ sandbox/trunk/ttk-gsoc/src/idlelib/FileList.py Sat Aug 2 20:07:38 2008
@@ -94,8 +94,8 @@
"Name Conflict",
"You now have multiple edit windows open for %r" % (filename,),
master=self.root)
- self.dict[newkey] = edit
- self.inversedict[edit] = newkey
+ self.dict[newkey] = editwin
+ self.inversedict[editwin] = newkey
if key:
try:
del self.dict[key]
More information about the Python-checkins
mailing list