[Python-checkins] r43603 - peps/trunk/pep-0333.txt

guido.van.rossum python-checkins at python.org
Mon Apr 3 21:07:09 CEST 2006


Author: guido.van.rossum
Date: Mon Apr  3 21:07:07 2006
New Revision: 43603

Modified:
   peps/trunk/pep-0333.txt
Log:
Fix typo reported by Doug Ported on web-sig.


Modified: peps/trunk/pep-0333.txt
==============================================================================
--- peps/trunk/pep-0333.txt	(original)
+++ peps/trunk/pep-0333.txt	Mon Apr  3 21:07:07 2006
@@ -352,7 +352,7 @@
         def __init__(self, application):
             self.application = application
 
-        def __call__(environ, start_response):
+        def __call__(self, environ, start_response):
             
             transform_ok = []
             


More information about the Python-checkins mailing list