diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-08-03 10:46:24 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-08-03 10:46:24 (GMT) |
commit | 56ee6d182028e2e1f458d002af6a09f3b7ab85c7 (patch) | |
tree | b30e4d52c0248188a26ac94d671114c781c0fd7e /Lib | |
parent | 2a157d2a3d76960e696ef8004c237de4b424302e (diff) | |
parent | 25e2cd13885207d41344313984322b608a26fbac (diff) | |
download | cpython-56ee6d182028e2e1f458d002af6a09f3b7ab85c7.zip cpython-56ee6d182028e2e1f458d002af6a09f3b7ab85c7.tar.gz cpython-56ee6d182028e2e1f458d002af6a09f3b7ab85c7.tar.bz2 |
merged heads
Diffstat (limited to 'Lib')
-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. |