From: Fred Drake Date: Sat, 13 Oct 2001 18:38:53 +0000 (+0000) Subject: "ib" should be "boundary"; reported by Neal Norwitz. X-Git-Tag: v2.2.1c1~1292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c85da4d164d11772f5f4fce8c4ed961065c514a;p=python "ib" should be "boundary"; reported by Neal Norwitz. --- diff --git a/Lib/cgi.py b/Lib/cgi.py index 19304af9eb..9ad6758d61 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -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 + "--"