summaryrefslogtreecommitdiff
path: root/python3/httplib2/__init__.py
diff options
context:
space:
mode:
authorJoe Gregorio <jcgregorio@google.com>2011-06-06 16:39:56 -0400
committerJoe Gregorio <jcgregorio@google.com>2011-06-06 16:39:56 -0400
commita2324f6072bf0a78e7c71d586c7689dee2ea70a8 (patch)
tree29c5177ec60e82a20602cfd802f8d8f5b1c2fd49 /python3/httplib2/__init__.py
parenteb483aaa3d0c4c3b14b6117063efec4a51425168 (diff)
downloadhttplib2-a2324f6072bf0a78e7c71d586c7689dee2ea70a8.tar.gz
Now testing against Python 3.2
Diffstat (limited to 'python3/httplib2/__init__.py')
-rw-r--r--python3/httplib2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 1599e68..ae786c1 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -1046,7 +1046,7 @@ a string that contains the response entity body.
if len(domain_port) == 2 and domain_port[1] == '443' and scheme == 'http':
scheme = 'https'
authority = domain_port[0]
-
+
conn_key = scheme+":"+authority
if conn_key in self.connections:
conn = self.connections[conn_key]