]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix spacing in string literal.
authorGeorg Brandl <georg@python.org>
Wed, 3 Aug 2011 06:27:00 +0000 (08:27 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 3 Aug 2011 06:27:00 +0000 (08:27 +0200)
Lib/http/client.py

index 490600797292c98df8776f39eb7668c661761c90..3f0272942ea49adc4768517b1108b8fe39d74a55 100644 (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.