diff options
author | Georg Brandl <georg@python.org> | 2011-08-03 06:27:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-08-03 06:27:00 (GMT) |
commit | 25e2cd13885207d41344313984322b608a26fbac (patch) | |
tree | 1c989804c38950d910cc78258c9ff3363f16cbae /Lib/http | |
parent | 86a1a8974dc23b2cdcb6cac3cb0babbfc6af296c (diff) | |
download | cpython-25e2cd13885207d41344313984322b608a26fbac.zip cpython-25e2cd13885207d41344313984322b608a26fbac.tar.gz cpython-25e2cd13885207d41344313984322b608a26fbac.tar.bz2 |
Fix spacing in string literal.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index 4906007..3f02729 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -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. |