Commit 2b4cb96b authored by Terry Reedy's avatar Terry Reedy

Issue 9222 Fix filetypes for open dialog

parent 5468f4ff
...@@ -476,8 +476,8 @@ class IOBinding: ...@@ -476,8 +476,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