diff options
author | Terry Reedy <tjreedy@udel.edu> | 2010-11-23 06:07:04 +0000 |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2010-11-23 06:07:04 +0000 |
commit | 2b4cb96bf7a62dd78ae053b8ac2237ced44aa360 (patch) | |
tree | b08ca9fafea96cd373c88fff8400b561eb9aa08f /Lib/idlelib/IOBinding.py | |
parent | 5468f4ff10e4c5b13ae45e5d1be4f07b05c73048 (diff) | |
download | cpython-git-2b4cb96bf7a62dd78ae053b8ac2237ced44aa360.tar.gz |
Issue 9222 Fix filetypes for open dialog
Diffstat (limited to 'Lib/idlelib/IOBinding.py')
-rw-r--r-- | Lib/idlelib/IOBinding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index 1b7bfc1da9..381bb00cc0 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", "*"), ] |