diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 03:45:33 -0400 |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 03:45:33 -0400 |
| commit | e8509556c396013abb465ffb766162c51164d9b6 (patch) | |
| tree | d5ec1e28ae0e90e9eb4ce32c8d3b4d38f6c6921f | |
| parent | e52c41a714e46ebd78eef212382240bd8828eaf9 (diff) | |
| parent | 6f5cdfefa10e89e57c26ddf358bacd044eb7cfc6 (diff) | |
| download | cpython-git-e8509556c396013abb465ffb766162c51164d9b6.tar.gz | |
Merge with 3.4
| -rw-r--r-- | Lib/idlelib/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/help.py b/Lib/idlelib/help.py index a134bd8947..731b334a6d 100644 --- a/Lib/idlelib/help.py +++ b/Lib/idlelib/help.py @@ -234,7 +234,7 @@ def copy_strip(): with open(src, 'rb') as inn,\ open(dst, 'wb') as out: for line in inn: - out.write(line.rstrip() + '\n') + out.write(line.rstrip() + b'\n') print('idle.html copied to help.html') def show_idlehelp(parent): |
