summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-11-24 02:35:35 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-11-24 02:35:35 (GMT)
commit77c06fbf942bf4c532d0f8d6f254882a9e5957ec (patch)
treec892e2501626f2657386eb39c524611215ded052 /Lib/httplib.py
parentb808c5cf2da088e66f43de61d3c5d741b134f419 (diff)
downloadcpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.zip
cpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.tar.gz
cpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r--Lib/httplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index d367ea7..e98fa46 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -352,7 +352,7 @@ class HTTPResponse:
# For older HTTP, Keep-Alive indiciates persistent connection.
if self.msg.getheader('keep-alive'):
return False
-
+
# Proxy-Connection is a netscape hack.
pconn = self.msg.getheader('proxy-connection')
if pconn and pconn.lower().find("keep-alive") >= 0: