Fix spacing in string literal.

This commit is contained in:
Georg Brandl 2011-08-03 08:27:00 +02:00
parent 86a1a8974d
commit 25e2cd1388
1 changed files with 2 additions and 2 deletions

View File

@ -777,8 +777,8 @@ class HTTPConnection:
for d in data:
self.sock.sendall(d)
else:
raise TypeError("data should be a bytes-like object\
or an iterable, got %r " % type(data))
raise TypeError("data should be a bytes-like object "
"or an iterable, got %r" % type(data))
def _output(self, s):
"""Add a line of output to the current request buffer.