summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 19304af..9ad6758 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 + "--"