diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-08-31 21:42:36 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-08-31 21:42:36 (GMT) |
commit | 804252b3d93b4ea3f1fff61db692c9dff759fedd (patch) | |
tree | 425cf60c8ecf486baabc1ebc774fdbe852463baf | |
parent | d953f6e2c70a16489782c78ebd5b55a28fc1e350 (diff) | |
download | cpython-804252b3d93b4ea3f1fff61db692c9dff759fedd.zip cpython-804252b3d93b4ea3f1fff61db692c9dff759fedd.tar.gz cpython-804252b3d93b4ea3f1fff61db692c9dff759fedd.tar.bz2 |
Eliminate latin-1 encoding
-rw-r--r-- | Lib/idlelib/aboutDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/aboutDialog.py b/Lib/idlelib/aboutDialog.py index a0a6691..e0a6558 100644 --- a/Lib/idlelib/aboutDialog.py +++ b/Lib/idlelib/aboutDialog.py @@ -120,7 +120,7 @@ class AboutDialog(Toplevel): self.display_printer_text(credits, 'About - Python Credits') def ShowIDLECredits(self): - self.ViewFile('About - Credits','CREDITS.txt', 'iso-8859-1') + self.ViewFile('About - Credits','CREDITS.txt') def ShowIDLEAbout(self): self.ViewFile('About - Readme', 'README.txt') |