summaryrefslogtreecommitdiffstats
path: root/Lib/encodings
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-13 13:48:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-08-13 13:48:55 (GMT)
commitfd6608bcea685073efffe779d7f4261dd8e512d4 (patch)
tree4fa40c7050f6ac4c016ab30ac29b29659063e78f /Lib/encodings
parentfee3126eb35a520f62de71bd038841ae51ba5ad4 (diff)
downloadcpython-fd6608bcea685073efffe779d7f4261dd8e512d4.zip
cpython-fd6608bcea685073efffe779d7f4261dd8e512d4.tar.gz
cpython-fd6608bcea685073efffe779d7f4261dd8e512d4.tar.bz2
Fix typo (PyChecker)
Diffstat (limited to 'Lib/encodings')
-rw-r--r--Lib/encodings/charmap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/charmap.py b/Lib/encodings/charmap.py
index f0bb4b9..5f5b9cc 100644
--- a/Lib/encodings/charmap.py
+++ b/Lib/encodings/charmap.py
@@ -25,7 +25,7 @@ class StreamWriter(Codec,codecs.StreamWriter):
def __init__(self,stream,errors='strict',mapping=None):
- codecs.StreamWriter.__init__(self,strict,errors)
+ codecs.StreamWriter.__init__(self,stream,errors)
self.mapping = mapping
def encode(self,input,errors='strict'):