From 25e2cd13885207d41344313984322b608a26fbac Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 3 Aug 2011 08:27:00 +0200 Subject: [PATCH] Fix spacing in string literal. --- Lib/http/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/http/client.py b/Lib/http/client.py index 49060079729..3f0272942ea 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.