summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-10-13 18:38:53 +0000
committerFred Drake <fdrake@acm.org>2001-10-13 18:38:53 +0000
commit59b04d56019a7f549757ebe1774e37b9a5c1b84d (patch)
treeee84c37064e10cc53ef2b55482e2e361cd043ccc /Lib/cgi.py
parent122a034dffe2d8a0944cb77389f92b6e7c674efb (diff)
downloadcpython-59b04d56019a7f549757ebe1774e37b9a5c1b84d.tar.gz
"ib" should be "boundary"; reported by Neal Norwitz.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
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 + "--"