From: Walter Dörwald Date: Fri, 14 Apr 2006 15:40:54 +0000 (+0000) Subject: Fix wrong attribute name. X-Git-Tag: v2.5a2~231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b17f12bbc6e6fc61e28aaf5d796cd83df1591779;p=python Fix wrong attribute name. --- diff --git a/Lib/codecs.py b/Lib/codecs.py index 04912a3244..c138187dd2 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