Commit 277896ad authored by Terry Reedy's avatar Terry Reedy

Issue 9222 Fix filetypes for open dialog

Merged from 86702
parent 55d935a1
...@@ -521,8 +521,8 @@ class IOBinding: ...@@ -521,8 +521,8 @@ class IOBinding:
savedialog = None savedialog = None
filetypes = [ filetypes = [
("Python and text files", "*.py *.pyw *.txt", "TEXT"), ("Python files", "*.py *.pyw", "TEXT"),
("All text files", "*", "TEXT"), ("Text files", "*.txt", "TEXT"),
("All files", "*"), ("All files", "*"),
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment