]> granicus.if.org Git - python/commitdiff
Issue 9222 Fix filetypes for open dialog
authorTerry Reedy <tjreedy@udel.edu>
Tue, 23 Nov 2010 06:44:05 +0000 (06:44 +0000)
committerTerry Reedy <tjreedy@udel.edu>
Tue, 23 Nov 2010 06:44:05 +0000 (06:44 +0000)
Merged from 86702

Lib/idlelib/IOBinding.py

index cbc1c3343ed2b401e27ed8c8db8c6961d76e7073..a5b610ef87be4afc8a9fa33f379ddd17fbb8fe29 100644 (file)
@@ -521,8 +521,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", "*"),
         ]