diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-04-14 15:40:54 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-04-14 15:40:54 (GMT) |
commit | b17f12bbc6e6fc61e28aaf5d796cd83df1591779 (patch) | |
tree | f07f6f8f2a34468561c5d59cf3fd6c7f8ebd5e0b /Lib | |
parent | 6493699c0d2190c3f568f92b5c6e8cf471ad435b (diff) | |
download | cpython-b17f12bbc6e6fc61e28aaf5d796cd83df1591779.zip cpython-b17f12bbc6e6fc61e28aaf5d796cd83df1591779.tar.gz cpython-b17f12bbc6e6fc61e28aaf5d796cd83df1591779.tar.bz2 |
Fix wrong attribute name.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 04912a3..c138187 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -233,7 +233,7 @@ class BufferedIncrementalDecoder(IncrementalDecoder): def reset(self): IncrementalDecoder.reset(self) - self.bytebuffer = "" + self.buffer = "" # # The StreamWriter and StreamReader class provide generic working |