diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-01-02 16:38:19 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-01-02 16:38:19 +0000 |
commit | 1c3adb6066bf228f87195c33058487afc2571d4d (patch) | |
tree | 146a9b1ea52f9c181b1373fa4295e160f283cdf8 /Lib/lib-tk/tkFileDialog.py | |
parent | 715e09162e05e4c0dd74ea1d9664dc26eaf40ab4 (diff) | |
download | cpython-1c3adb6066bf228f87195c33058487afc2571d4d.tar.gz |
Fix typo in label
Diffstat (limited to 'Lib/lib-tk/tkFileDialog.py')
-rw-r--r-- | Lib/lib-tk/tkFileDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkFileDialog.py b/Lib/lib-tk/tkFileDialog.py index f2604bcf85..6a3a464db3 100644 --- a/Lib/lib-tk/tkFileDialog.py +++ b/Lib/lib-tk/tkFileDialog.py @@ -138,6 +138,6 @@ if __name__ == "__main__": except (ImportError, AttributeError): pass - print "open", askopenfilename(filetypes=[("all filez", "*")]).encode(enc) + print "open", askopenfilename(filetypes=[("all files", "*")]).encode(enc) print "saveas", asksaveasfilename().encode(enc) |