From a2324f6072bf0a78e7c71d586c7689dee2ea70a8 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Mon, 6 Jun 2011 16:39:56 -0400 Subject: Now testing against Python 3.2 --- python3/httplib2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python3/httplib2/__init__.py') 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] -- cgit v1.2.1