Remove lots of spaces within exception message.
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 4436105..a188393 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -1057,8 +1057,8 @@
                     mv = memoryview(data)
                 except TypeError:
                     if isinstance(data, collections.Iterable):
-                        raise ValueError("Content-Length should be specified \
-                                for iterable data of type %r %r" % (type(data),
+                        raise ValueError("Content-Length should be specified "
+                                "for iterable data of type %r %r" % (type(data),
                                 data))
                 else:
                     request.add_unredirected_header(