diff options
author | Terry Reedy <tjreedy@udel.edu> | 2010-11-23 06:01:31 +0000 |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2010-11-23 06:01:31 +0000 |
commit | 5e438570cb8d7b64d71f1cb356df12edfec09dfe (patch) | |
tree | df8498f2a02aaa01cbe4a0dc2843d86bf61b5ca6 | |
parent | e61602fc84ba55186dc81f3bdf3f9f78de9926eb (diff) | |
download | cpython-git-5e438570cb8d7b64d71f1cb356df12edfec09dfe.tar.gz |
Issue 9222 Fix filetypes for open dialog
-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", "*"), ] |