commit | 7f3652e37156a4794c04a70e93c339d7d58a52f2 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jun 07 20:14:04 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jun 07 20:14:04 2010 +0000 |
tree | abd6510f72195675f53eebbba41d7100aea11ea0 | |
parent | 7eeb5b5e5017cf1354b084327b49390044946069 [diff] [blame] |
Issue #8897: Fix sunau module, use bytes to write the header. Patch written by Thomas Jollans.
diff --git a/Lib/sunau.py b/Lib/sunau.py index 4d07f43..5f50e8f 100644 --- a/Lib/sunau.py +++ b/Lib/sunau.py
@@ -299,7 +299,7 @@ self._nframeswritten = 0 self._datawritten = 0 self._datalength = 0 - self._info = '' + self._info = b'' self._comptype = 'ULAW' # default is U-law def setnchannels(self, nchannels):