From: Georg Brandl Date: Wed, 3 Aug 2011 06:27:00 +0000 (+0200) Subject: Fix spacing in string literal. X-Git-Tag: v3.2.2rc1~29^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25e2cd13885207d41344313984322b608a26fbac;p=thirdparty%2FPython%2Fcpython.git Fix spacing in string literal. --- diff --git a/Lib/http/client.py b/Lib/http/client.py index 490600797292..3f0272942ea4 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.