From 6153604bc700d06c6a280643743c547db7d0d4f6 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 3 Feb 2011 07:46:41 +0000 Subject: Remove lots of spaces within exception message. --- Lib/urllib/request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 @@ class AbstractHTTPHandler(BaseHandler): 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( -- cgit v0.12