]> granicus.if.org Git - python/commitdiff
Issue 9222 Fix filetypes for open dialog
authorTerry Reedy <tjreedy@udel.edu>
Tue, 23 Nov 2010 06:07:04 +0000 (06:07 +0000)
committerTerry Reedy <tjreedy@udel.edu>
Tue, 23 Nov 2010 06:07:04 +0000 (06:07 +0000)
Lib/idlelib/IOBinding.py

index 1b7bfc1da9c418fc31e1f17e6e8b32a986180909..381bb00cc069700369e8ffc5492d565cefe27d9f 100644 (file)
@@ -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", "*"),
         ]