diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2004-04-11 03:16:07 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2004-04-11 03:16:07 +0000 |
commit | cf6f1b69eb5f491dd3cba6c5c90bcb344d4b3a96 (patch) | |
tree | b68bdb1ab0c5203094923cdd3d5a7d367cc8dd49 /Lib/idlelib/IOBinding.py | |
parent | 5bed456056db0b16afd97c0045796cdafeac4bd9 (diff) | |
download | cpython-git-cf6f1b69eb5f491dd3cba6c5c90bcb344d4b3a96.tar.gz |
M EditorWindow.py
M IOBinding.py
M NEWS.txt
M configDialog.py
- If nulls somehow got into the strings in recent-files.lst
EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
Diffstat (limited to 'Lib/idlelib/IOBinding.py')
-rw-r--r-- | Lib/idlelib/IOBinding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index bddd4d6d52..7baf8ccae6 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py @@ -540,7 +540,7 @@ class IOBinding: def updaterecentfileslist(self,filename): "Update recent file list on all editor windows" - self.editwin.UpdateRecentFilesList(filename) + self.editwin.update_recent_files_list(filename) def test(): root = Tk() |