]> granicus.if.org Git - python/commitdiff
"ib" should be "boundary"; reported by Neal Norwitz.
authorFred Drake <fdrake@acm.org>
Sat, 13 Oct 2001 18:38:53 +0000 (18:38 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 13 Oct 2001 18:38:53 +0000 (18:38 +0000)
Lib/cgi.py

index 19304af9eb270be91343a1d78821eaf39300eafc..9ad6758d61cb19156b1ab7254f3eb41f37c3f184 100755 (executable)
@@ -248,7 +248,7 @@ def parse_multipart(fp, pdict):
         boundary = pdict['boundary']
     if not valid_boundary(boundary):
         raise ValueError,  ('Invalid boundary in multipart form: %s'
-                            % `ib`)
+                            % `boundary`)
 
     nextpart = "--" + boundary
     lastpart = "--" + boundary + "--"