summaryrefslogtreecommitdiff
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-05-29 10:42:34 -0700
committerNed Deily <nad@acm.org>2012-05-29 10:42:34 -0700
commit7148984d61b5677af1ee090e52c1cba08299c9f9 (patch)
tree3e524f4b81ee9e405cfdc5b2d320f688bc462a9b /Lib/idlelib/EditorWindow.py
parentff0e22b6ec0080478c316a9476cd40aa1d398788 (diff)
downloadcpython-git-7148984d61b5677af1ee090e52c1cba08299c9f9.tar.gz
Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r--Lib/idlelib/EditorWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index fb05245dc3..68b51e6868 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -856,7 +856,7 @@ class EditorWindow(object):
# for each edit window instance, construct the recent files menu
for instance in self.top.instance_dict.keys():
menu = instance.recent_files_menu
- menu.delete(1, END) # clear, and rebuild:
+ menu.delete(0, END) # clear, and rebuild:
for i, file_name in enumerate(rf_list):
file_name = file_name.rstrip() # zap \n
# make unicode string to display non-ASCII chars correctly