diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-01-02 16:38:19 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-01-02 16:38:19 (GMT) |
commit | 1142d595eed6ee9a8bae0907d2347ddae0692651 (patch) | |
tree | f0cbdf782bf4d64f5ae73a05d8e199c0bfaccda4 /Lib | |
parent | 4f6fe5242464e7930e0bd410bb68ba8b97b8514f (diff) | |
download | cpython-1142d595eed6ee9a8bae0907d2347ddae0692651.zip cpython-1142d595eed6ee9a8bae0907d2347ddae0692651.tar.gz cpython-1142d595eed6ee9a8bae0907d2347ddae0692651.tar.bz2 |
Fix typo in label
Diffstat (limited to 'Lib')
-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 f2604bc..6a3a464 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) |