From 5e438570cb8d7b64d71f1cb356df12edfec09dfe Mon Sep 17 00:00:00 2001 From: Terry Reedy Date: Tue, 23 Nov 2010 06:01:31 +0000 Subject: Issue 9222 Fix filetypes for open dialog --- Lib/idlelib/IOBinding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index 1b7bfc1..381bb00 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py @@ -476,8 +476,8 @@ class IOBinding: savedialog = None filetypes = [ - ("Python and text files", "*.py *.pyw *.txt", "TEXT"), - ("All text files", "*", "TEXT"), + ("Python files", "*.py *.pyw", "TEXT"), + ("Text files", "*.txt", "TEXT"), ("All files", "*"), ] -- cgit v0.12