diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-22 07:55:20 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-22 07:55:20 (GMT) |
| commit | 05029d56f417a63311139d438840d44d06e3f6e8 (patch) | |
| tree | 3f69566aa555ee7d9dedaf37a2713d8e9a13d9b1 /Lib/idlelib/aboutDialog.py | |
| parent | 909acb8c633fb888de2da75e6693326343284ac8 (diff) | |
| download | cpython-05029d56f417a63311139d438840d44d06e3f6e8.zip cpython-05029d56f417a63311139d438840d44d06e3f6e8.tar.gz cpython-05029d56f417a63311139d438840d44d06e3f6e8.tar.bz2 | |
Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.
Diffstat (limited to 'Lib/idlelib/aboutDialog.py')
| -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 3112e6a..0457c43 100644 --- a/Lib/idlelib/aboutDialog.py +++ b/Lib/idlelib/aboutDialog.py @@ -130,7 +130,7 @@ class AboutDialog(Toplevel): self.display_file_text('About - Readme', 'README.txt', 'ascii') def ShowIDLENEWS(self): - self.display_file_text('About - NEWS', 'NEWS.txt', 'ascii') + self.display_file_text('About - NEWS', 'NEWS.txt', 'utf-8') def display_printer_text(self, title, printer): printer._Printer__setup() |
