Commit fd6608bc authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix typo (PyChecker)

parent fee3126e
......@@ -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'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment