Partial backport of 612f34e31270: fix spacing error in exception message.

This commit is contained in:
Georg Brandl 2012-06-24 20:01:05 +02:00
parent 5135992164
commit 496660c56b
1 changed files with 2 additions and 2 deletions

View File

@ -1066,8 +1066,8 @@ class AbstractHTTPHandler(BaseHandler):
if request.data is not None: # POST
data = request.data
if isinstance(data, str):
msg = "POST data should be bytes or an iterable of bytes."\
"It cannot be str"
msg = "POST data should be bytes or an iterable of bytes. "\
"It cannot be of type str."
raise TypeError(msg)
if not request.has_header('Content-type'):
request.add_unredirected_header(