diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-10-04 02:09:17 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-10-04 02:09:17 (GMT) |
commit | 0b634efcbcd10d9364796e9b048f18cd4a08b88b (patch) | |
tree | fe9da924387eab4fd47891341d98b1888da6701b /Lib/idlelib/FileList.py | |
parent | 85897c9b38794c44d549c2e4b5f46cc6d1d57da4 (diff) | |
download | cpython-0b634efcbcd10d9364796e9b048f18cd4a08b88b.zip cpython-0b634efcbcd10d9364796e9b048f18cd4a08b88b.tar.gz cpython-0b634efcbcd10d9364796e9b048f18cd4a08b88b.tar.bz2 |
Clean up EditorWindow close.
Diffstat (limited to 'Lib/idlelib/FileList.py')
-rw-r--r-- | Lib/idlelib/FileList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/FileList.py b/Lib/idlelib/FileList.py index 4b57901..e40c7a7 100644 --- a/Lib/idlelib/FileList.py +++ b/Lib/idlelib/FileList.py @@ -50,7 +50,7 @@ class FileList: break return "break" - def close_edit(self, edit): + def unregister_maybe_terminate(self, edit): try: key = self.inversedict[edit] except KeyError: |